All files : lib/modals/detail_modal.freezed.dart

Cyclomatic complexity / violations : 1143 / 3
Source lines of code : 2092
Maintainability index : 93
Number of Arguments : 1
Maximum Nesting : 0
Issues : 126
Design issues : 53
Source code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
_$identity stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$DetailModalFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$DetailModal stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$DetailModal.project stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$DetailModal.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$DetailModal.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$DetailModalCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$DetailModalCopyWith.$DetailModalCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$DetailModalCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$DetailModalCopyWith.project stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$DetailModalCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$DetailModalCopyWithImpl._$DetailModalCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$DetailModalCopyWithImpl.call stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 41

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 72

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$DetailModalCopyWithImpl.project stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 54

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 78

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_$$_DetailModalCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_DetailModalCopyWith._$$_DetailModalCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_DetailModalCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$$_DetailModalCopyWith.project stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_DetailModalCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_DetailModalCopyWithImpl.__$$_DetailModalCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_DetailModalCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_DetailModalCopyWithImpl.call stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 38

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 72

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$_DetailModal stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_DetailModal._$_DetailModal stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$_DetailModal.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_DetailModal.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_DetailModal.== stats:

cyclomatic complexity: 4

cyclomatic complexity violation level: none

halstead volume: 53

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 75

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 4 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
_$_DetailModal.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 14

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_DetailModal.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_DetailModal.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_DetailModal stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_DetailModal._DetailModal stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_DetailModal.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_DetailModal.project stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_DetailModal.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$ProjectFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project stats:

number of methods: 35 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$Project.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.projectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.primaryTaxonomyNodes stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.additionalTaxonomyNodes stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.startTrl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.currentTrl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.endTrl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.benefits stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.destinations stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.supportedMission stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.startYear stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.startMonth stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.endYear stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.endMonth stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.statusDescription stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.principalInvestigators stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.programManagers stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.projectManagers stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.coInvestigators stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.website stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.libraryItems stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.transitions stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.primaryImage stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.program stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.leadOrganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$Project.statesWithWork stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.lastUpdated stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.releaseStatusString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.endDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.startDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Project.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

$ProjectCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

$ProjectCopyWith.$ProjectCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$ProjectCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 34 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 33

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 33 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$ProjectCopyWithImpl stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$ProjectCopyWithImpl._$ProjectCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$ProjectCopyWithImpl.call stats:

cyclomatic complexity: 34

cyclomatic complexity violation level: warning

halstead volume: 2354

halstead volume violation level: none

lines of code: 171 lines

lines of code violation level: none

maintainability index: 26

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 33

number of parameters violation level: none

source lines of code: 134 lines

source lines of code violation level: none

long-method

Long method. This method contains 134 lines with code.

Anti pattern works in deprecated mode. Please configure source-lines-of-code metric. For detailed information please read documentation.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$$_ProjectCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_ProjectCopyWith._$$_ProjectCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_ProjectCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 35 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 33

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 33 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_ProjectCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_ProjectCopyWithImpl.__$$_ProjectCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_ProjectCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_ProjectCopyWithImpl.call stats:

cyclomatic complexity: 34

cyclomatic complexity violation level: warning

halstead volume: 2502

halstead volume violation level: none

lines of code: 171 lines

lines of code violation level: none

maintainability index: 26

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 33

number of parameters violation level: none

source lines of code: 134 lines

source lines of code violation level: none

long-method

Long method. This method contains 134 lines with code.

Anti pattern works in deprecated mode. Please configure source-lines-of-code metric. For detailed information please read documentation.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_Project stats:

number of methods: 22 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$_Project._$_Project stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 49 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_Project.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_Project.primaryTaxonomyNodes stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.additionalTaxonomyNodes stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.destinations stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 5 lines

lines of code violation level: none

maintainability index: 98

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_Project.supportedMission stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.principalInvestigators stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.programManagers stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.projectManagers stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.coInvestigators stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.libraryItems stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.transitions stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.primaryImage stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.responsibleMd stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.program stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.leadOrganization stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.statesWithWork stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_Project.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 166

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 85

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_Project.== stats:

cyclomatic complexity: 36

cyclomatic complexity violation level: warning

halstead volume: 1122

halstead volume violation level: none

lines of code: 61 lines

lines of code violation level: none

maintainability index: 36

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 58 lines

source lines of code violation level: none

long-method

Long method. This method contains 58 lines with code.

Anti pattern works in deprecated mode. Please configure source-lines-of-code metric. For detailed information please read documentation.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_Project.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 535

halstead volume violation level: none

lines of code: 38 lines

lines of code violation level: none

maintainability index: 47

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 36 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_Project.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_Project.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_Project stats:

number of methods: 36 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_Project._Project stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 34 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_Project.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.projectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.primaryTaxonomyNodes stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.additionalTaxonomyNodes stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.startTrl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.currentTrl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.endTrl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.benefits stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.destinations stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.supportedMission stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.startYear stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.startMonth stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.endYear stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.endMonth stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.statusDescription stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.principalInvestigators stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.programManagers stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.projectManagers stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.coInvestigators stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.website stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.libraryItems stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.transitions stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.primaryImage stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.program stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.leadOrganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.statesWithWork stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.lastUpdated stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.releaseStatusString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.endDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.startDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Project.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$ResponsibleMdFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd stats:

number of methods: 12 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$ResponsibleMd.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.canUserEdit stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.city stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.responsibleMdExternal stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.linkCount stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.organizationId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.organizationName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.organizationType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.naorganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.organizationTypePretty stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ResponsibleMd.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$ResponsibleMdCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

$ResponsibleMdCopyWith.$ResponsibleMdCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$ResponsibleMdCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$ResponsibleMdCopyWithImpl stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$ResponsibleMdCopyWithImpl._$ResponsibleMdCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$ResponsibleMdCopyWithImpl.call stats:

cyclomatic complexity: 11

cyclomatic complexity violation level: none

halstead volume: 488

halstead volume violation level: none

lines of code: 56 lines

lines of code violation level: none

maintainability index: 45

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 42 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$$_ResponsibleMdCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_ResponsibleMdCopyWith._$$_ResponsibleMdCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_ResponsibleMdCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 12 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_ResponsibleMdCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_ResponsibleMdCopyWithImpl.__$$_ResponsibleMdCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_ResponsibleMdCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_ResponsibleMdCopyWithImpl.call stats:

cyclomatic complexity: 11

cyclomatic complexity violation level: none

halstead volume: 484

halstead volume violation level: none

lines of code: 56 lines

lines of code violation level: none

maintainability index: 45

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 42 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_ResponsibleMd stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_ResponsibleMd._$_ResponsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_ResponsibleMd.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_ResponsibleMd.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 33

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_ResponsibleMd.== stats:

cyclomatic complexity: 13

cyclomatic complexity violation level: none

halstead volume: 297

halstead volume violation level: none

lines of code: 23 lines

lines of code violation level: none

maintainability index: 53

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 20 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_ResponsibleMd.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 126

halstead volume violation level: none

lines of code: 14 lines

lines of code violation level: none

maintainability index: 62

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 12 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_ResponsibleMd.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_ResponsibleMd.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_ResponsibleMd stats:

number of methods: 13 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_ResponsibleMd._ResponsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_ResponsibleMd.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.canUserEdit stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.city stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.responsibleMdExternal stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.linkCount stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.organizationId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.organizationName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.organizationType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.naorganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.organizationTypePretty stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ResponsibleMd.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$LeadOrganizationFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization stats:

number of methods: 16 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$LeadOrganization.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.canUserEdit stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.city stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.countryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.leadOrganizationExternal stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.linkCount stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.organizationId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.organizationName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.organizationType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.stateTerritory stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.stateTerritoryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.naorganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.organizationTypePretty stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LeadOrganization.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$LeadOrganizationCopyWith stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$LeadOrganizationCopyWith.$LeadOrganizationCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$LeadOrganizationCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 15 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 14

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 14 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$LeadOrganizationCopyWith.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$LeadOrganizationCopyWith.stateTerritory stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LeadOrganizationCopyWithImpl stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$LeadOrganizationCopyWithImpl._$LeadOrganizationCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LeadOrganizationCopyWithImpl.call stats:

cyclomatic complexity: 15

cyclomatic complexity violation level: none

halstead volume: 738

halstead volume violation level: none

lines of code: 76 lines

lines of code violation level: none

maintainability index: 40

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 14

number of parameters violation level: none

source lines of code: 58 lines

source lines of code violation level: none

long-method

Long method. This method contains 58 lines with code.

Anti pattern works in deprecated mode. Please configure source-lines-of-code metric. For detailed information please read documentation.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$LeadOrganizationCopyWithImpl.country stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$LeadOrganizationCopyWithImpl.stateTerritory stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_LeadOrganizationCopyWith stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$$_LeadOrganizationCopyWith._$$_LeadOrganizationCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_LeadOrganizationCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 16 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 14

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 14 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_LeadOrganizationCopyWith.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$$_LeadOrganizationCopyWith.stateTerritory stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_LeadOrganizationCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_LeadOrganizationCopyWithImpl.__$$_LeadOrganizationCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_LeadOrganizationCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_LeadOrganizationCopyWithImpl.call stats:

cyclomatic complexity: 15

cyclomatic complexity violation level: none

halstead volume: 733

halstead volume violation level: none

lines of code: 76 lines

lines of code violation level: none

maintainability index: 40

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 14

number of parameters violation level: none

source lines of code: 58 lines

source lines of code violation level: none

long-method

Long method. This method contains 58 lines with code.

Anti pattern works in deprecated mode. Please configure source-lines-of-code metric. For detailed information please read documentation.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_LeadOrganization stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_LeadOrganization._$_LeadOrganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 15 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_LeadOrganization.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LeadOrganization.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 53

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 88

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_LeadOrganization.== stats:

cyclomatic complexity: 17

cyclomatic complexity violation level: noted

halstead volume: 425

halstead volume violation level: none

lines of code: 29 lines

lines of code violation level: none

maintainability index: 49

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 26 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_LeadOrganization.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 188

halstead volume violation level: none

lines of code: 18 lines

lines of code violation level: none

maintainability index: 58

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 16 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_LeadOrganization.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LeadOrganization.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_LeadOrganization stats:

number of methods: 17 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_LeadOrganization._LeadOrganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 15 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_LeadOrganization.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.canUserEdit stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.city stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.countryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.leadOrganizationExternal stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.linkCount stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.organizationId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.organizationName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.organizationType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.stateTerritory stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.stateTerritoryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.naorganization stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.organizationTypePretty stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LeadOrganization.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$ProgramFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program stats:

number of methods: 11 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$Program.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.active stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.parentProgram stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.parentProgramId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.programId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.responsibleMdId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Program.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

$ProgramCopyWith stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$ProgramCopyWith.$ProgramCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$ProgramCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 9

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 9 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$ProgramCopyWith.parentProgram stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$ProgramCopyWith.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$ProgramCopyWithImpl stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$ProgramCopyWithImpl._$ProgramCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$ProgramCopyWithImpl.call stats:

cyclomatic complexity: 10

cyclomatic complexity violation level: none

halstead volume: 448

halstead volume violation level: none

lines of code: 51 lines

lines of code violation level: none

maintainability index: 46

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 9

number of parameters violation level: none

source lines of code: 38 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 9 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$ProgramCopyWithImpl.parentProgram stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$ProgramCopyWithImpl.responsibleMd stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_ProgramCopyWith stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$$_ProgramCopyWith._$$_ProgramCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_ProgramCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 9

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 9 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_ProgramCopyWith.parentProgram stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$$_ProgramCopyWith.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_ProgramCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_ProgramCopyWithImpl.__$$_ProgramCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_ProgramCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_ProgramCopyWithImpl.call stats:

cyclomatic complexity: 10

cyclomatic complexity violation level: none

halstead volume: 444

halstead volume violation level: none

lines of code: 51 lines

lines of code violation level: none

maintainability index: 46

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 9

number of parameters violation level: none

source lines of code: 38 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 9 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_Program stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_Program._$_Program stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_Program.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_Program.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 29

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_Program.== stats:

cyclomatic complexity: 12

cyclomatic complexity violation level: none

halstead volume: 267

halstead volume violation level: none

lines of code: 20 lines

lines of code violation level: none

maintainability index: 55

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 17 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_Program.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 111

halstead volume violation level: none

lines of code: 13 lines

lines of code violation level: none

maintainability index: 63

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 11 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_Program.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_Program.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_Program stats:

number of methods: 12 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_Program._Program stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_Program.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.active stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.parentProgram stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.parentProgramId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.programId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.responsibleMdId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Program.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$ParentProgramFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram stats:

number of methods: 8 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$ParentProgram.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram.active stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram.programId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram.responsibleMdId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$ParentProgram.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$ParentProgramCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$ParentProgramCopyWith.$ParentProgramCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$ParentProgramCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 6

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 6 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$ParentProgramCopyWith.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$ParentProgramCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$ParentProgramCopyWithImpl._$ParentProgramCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$ParentProgramCopyWithImpl.call stats:

cyclomatic complexity: 7

cyclomatic complexity violation level: none

halstead volume: 282

halstead volume violation level: none

lines of code: 36 lines

lines of code violation level: none

maintainability index: 52

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 6

number of parameters violation level: none

source lines of code: 26 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 6 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$ParentProgramCopyWithImpl.responsibleMd stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_ParentProgramCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_ParentProgramCopyWith._$$_ParentProgramCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_ParentProgramCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 8 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 6

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 6 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_ParentProgramCopyWith.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_ParentProgramCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_ParentProgramCopyWithImpl.__$$_ParentProgramCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_ParentProgramCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_ParentProgramCopyWithImpl.call stats:

cyclomatic complexity: 7

cyclomatic complexity violation level: none

halstead volume: 278

halstead volume violation level: none

lines of code: 36 lines

lines of code violation level: none

maintainability index: 52

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 6

number of parameters violation level: none

source lines of code: 26 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 6 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_ParentProgram stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_ParentProgram._$_ParentProgram stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_ParentProgram.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_ParentProgram.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_ParentProgram.== stats:

cyclomatic complexity: 9

cyclomatic complexity violation level: none

halstead volume: 180

halstead volume violation level: none

lines of code: 14 lines

lines of code violation level: none

maintainability index: 61

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 11 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_ParentProgram.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 70

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 68

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 8 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_ParentProgram.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_ParentProgram.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_ParentProgram stats:

number of methods: 9 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_ParentProgram._ParentProgram stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_ParentProgram.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ParentProgram.acronym stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ParentProgram.active stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ParentProgram.programId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ParentProgram.responsibleMd stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ParentProgram.responsibleMdId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ParentProgram.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_ParentProgram.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$PrimaryImageFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImage stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$PrimaryImage.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImage.id stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImage.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImage.projectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImage.publishedDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImage.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImage.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$PrimaryImageCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$PrimaryImageCopyWith.$PrimaryImageCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$PrimaryImageCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$PrimaryImageCopyWith.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$PrimaryImageCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$PrimaryImageCopyWithImpl._$PrimaryImageCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$PrimaryImageCopyWithImpl.call stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 227

halstead volume violation level: none

lines of code: 31 lines

lines of code violation level: none

maintainability index: 54

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 22 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$PrimaryImageCopyWithImpl.file stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_PrimaryImageCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_PrimaryImageCopyWith._$$_PrimaryImageCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_PrimaryImageCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_PrimaryImageCopyWith.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_PrimaryImageCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_PrimaryImageCopyWithImpl.__$$_PrimaryImageCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_PrimaryImageCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_PrimaryImageCopyWithImpl.call stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 223

halstead volume violation level: none

lines of code: 31 lines

lines of code violation level: none

maintainability index: 54

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 22 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_PrimaryImage stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_PrimaryImage._$_PrimaryImage stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_PrimaryImage.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_PrimaryImage.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 93

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_PrimaryImage.== stats:

cyclomatic complexity: 8

cyclomatic complexity violation level: none

halstead volume: 152

halstead volume violation level: none

lines of code: 13 lines

lines of code violation level: none

maintainability index: 62

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 10 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_PrimaryImage.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 57

halstead volume violation level: none

lines of code: 9 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 7 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_PrimaryImage.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_PrimaryImage.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_PrimaryImage stats:

number of methods: 8 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_PrimaryImage._PrimaryImage stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_PrimaryImage.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImage.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImage.id stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImage.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImage.projectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImage.publishedDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImage.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$PrimaryImageFileFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImageFile stats:

number of methods: 5 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$PrimaryImageFile.fileExtension stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImageFile.fileId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImageFile.fileSizeString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImageFile.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$PrimaryImageFile.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$PrimaryImageFileCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

$PrimaryImageFileCopyWith.$PrimaryImageFileCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$PrimaryImageFileCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$PrimaryImageFileCopyWithImpl stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$PrimaryImageFileCopyWithImpl._$PrimaryImageFileCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$PrimaryImageFileCopyWithImpl.call stats:

cyclomatic complexity: 4

cyclomatic complexity violation level: none

halstead volume: 129

halstead volume violation level: none

lines of code: 21 lines

lines of code violation level: none

maintainability index: 60

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 14 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
_$$_PrimaryImageFileCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_PrimaryImageFileCopyWith._$$_PrimaryImageFileCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_PrimaryImageFileCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_PrimaryImageFileCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_PrimaryImageFileCopyWithImpl.__$$_PrimaryImageFileCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_PrimaryImageFileCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_PrimaryImageFileCopyWithImpl.call stats:

cyclomatic complexity: 4

cyclomatic complexity violation level: none

halstead volume: 125

halstead volume violation level: none

lines of code: 21 lines

lines of code violation level: none

maintainability index: 60

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 14 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
_$_PrimaryImageFile stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_PrimaryImageFile._$_PrimaryImageFile stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_PrimaryImageFile.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_PrimaryImageFile.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_PrimaryImageFile.== stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 100

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 66

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 8 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_PrimaryImageFile.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 34

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 74

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 5 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_PrimaryImageFile.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_PrimaryImageFile.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_PrimaryImageFile stats:

number of methods: 6 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_PrimaryImageFile._PrimaryImageFile stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_PrimaryImageFile.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImageFile.fileExtension stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImageFile.fileId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImageFile.fileSizeString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_PrimaryImageFile.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$LibraryItemFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem stats:

number of methods: 14 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$LibraryItem.files stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.id stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.libraryItemTypeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.projectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.publishedDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.url stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.contentType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.caption stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.primary stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItem.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$LibraryItemCopyWith stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$LibraryItemCopyWith.$LibraryItemCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$LibraryItemCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 13 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 12

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 12 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$LibraryItemCopyWith.contentType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$LibraryItemCopyWith.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LibraryItemCopyWithImpl stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$LibraryItemCopyWithImpl._$LibraryItemCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LibraryItemCopyWithImpl.call stats:

cyclomatic complexity: 13

cyclomatic complexity violation level: none

halstead volume: 656

halstead volume violation level: none

lines of code: 66 lines

lines of code violation level: none

maintainability index: 42

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 12

number of parameters violation level: none

source lines of code: 50 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 12 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$LibraryItemCopyWithImpl.contentType stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$LibraryItemCopyWithImpl.file stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_LibraryItemCopyWith stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$$_LibraryItemCopyWith._$$_LibraryItemCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_LibraryItemCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 14 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 12

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 12 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_LibraryItemCopyWith.contentType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$$_LibraryItemCopyWith.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_LibraryItemCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_LibraryItemCopyWithImpl.__$$_LibraryItemCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_LibraryItemCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_LibraryItemCopyWithImpl.call stats:

cyclomatic complexity: 13

cyclomatic complexity violation level: none

halstead volume: 659

halstead volume violation level: none

lines of code: 66 lines

lines of code violation level: none

maintainability index: 42

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 12

number of parameters violation level: none

source lines of code: 50 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 12 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_LibraryItem stats:

number of methods: 8 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$_LibraryItem._$_LibraryItem stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 14 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_LibraryItem.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LibraryItem.files stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 16

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 81

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

+1 cyclo
Style: newline-before-return

Missing blank line before return.

Open documentation

_$_LibraryItem.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 43

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 89

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_LibraryItem.== stats:

cyclomatic complexity: 15

cyclomatic complexity violation level: none

halstead volume: 360

halstead volume violation level: none

lines of code: 22 lines

lines of code violation level: none

maintainability index: 53

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 19 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_LibraryItem.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 156

halstead volume violation level: none

lines of code: 16 lines

lines of code violation level: none

maintainability index: 60

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 14 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_LibraryItem.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LibraryItem.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_LibraryItem stats:

number of methods: 15 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_LibraryItem._LibraryItem stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 13 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_LibraryItem.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.files stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.id stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.libraryItemTypeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.projectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.publishedDateString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.url stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.contentType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.caption stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.file stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.primary stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItem.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$LibraryItemFileFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile stats:

number of methods: 10 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$LibraryItemFile.fileExtension stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.fileId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.fileName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.fileSize stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.objectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.objectType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.objectTypeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.fileSizeString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LibraryItemFile.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$LibraryItemFileCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$LibraryItemFileCopyWith.$LibraryItemFileCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$LibraryItemFileCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 9 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 8

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 8 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$LibraryItemFileCopyWith.objectType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LibraryItemFileCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$LibraryItemFileCopyWithImpl._$LibraryItemFileCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LibraryItemFileCopyWithImpl.call stats:

cyclomatic complexity: 9

cyclomatic complexity violation level: none

halstead volume: 379

halstead volume violation level: none

lines of code: 46 lines

lines of code violation level: none

maintainability index: 48

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 8

number of parameters violation level: none

source lines of code: 34 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 8 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$LibraryItemFileCopyWithImpl.objectType stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_LibraryItemFileCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_LibraryItemFileCopyWith._$$_LibraryItemFileCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_LibraryItemFileCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 8

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 8 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_LibraryItemFileCopyWith.objectType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_LibraryItemFileCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_LibraryItemFileCopyWithImpl.__$$_LibraryItemFileCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_LibraryItemFileCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_LibraryItemFileCopyWithImpl.call stats:

cyclomatic complexity: 9

cyclomatic complexity violation level: none

halstead volume: 375

halstead volume violation level: none

lines of code: 46 lines

lines of code violation level: none

maintainability index: 48

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 8

number of parameters violation level: none

source lines of code: 34 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 8 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_LibraryItemFile stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_LibraryItemFile._$_LibraryItemFile stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 9 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_LibraryItemFile.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LibraryItemFile.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 24

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 91

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_LibraryItemFile.== stats:

cyclomatic complexity: 11

cyclomatic complexity violation level: none

halstead volume: 237

halstead volume violation level: none

lines of code: 18 lines

lines of code violation level: none

maintainability index: 57

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 15 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_LibraryItemFile.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 97

halstead volume violation level: none

lines of code: 12 lines

lines of code violation level: none

maintainability index: 65

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 10 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_LibraryItemFile.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LibraryItemFile.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_LibraryItemFile stats:

number of methods: 11 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_LibraryItemFile._LibraryItemFile stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 9 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_LibraryItemFile.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.fileExtension stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.fileId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.fileName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.fileSize stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.objectId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.objectType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.objectTypeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.fileSizeString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LibraryItemFile.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$CoInvestigatorFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator stats:

number of methods: 12 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$CoInvestigator.contactId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.displayOrder stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.firstName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.lastName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.fullName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.fullNameInverted stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.middleInitial stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.primaryEmail stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.publicEmail stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.nacontact stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$CoInvestigator.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$CoInvestigatorCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

$CoInvestigatorCopyWith.$CoInvestigatorCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$CoInvestigatorCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$CoInvestigatorCopyWithImpl stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$CoInvestigatorCopyWithImpl._$CoInvestigatorCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$CoInvestigatorCopyWithImpl.call stats:

cyclomatic complexity: 11

cyclomatic complexity violation level: none

halstead volume: 488

halstead volume violation level: none

lines of code: 56 lines

lines of code violation level: none

maintainability index: 45

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 42 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$$_CoInvestigatorCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_CoInvestigatorCopyWith._$$_CoInvestigatorCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_CoInvestigatorCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 12 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_CoInvestigatorCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_CoInvestigatorCopyWithImpl.__$$_CoInvestigatorCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_CoInvestigatorCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_CoInvestigatorCopyWithImpl.call stats:

cyclomatic complexity: 11

cyclomatic complexity violation level: none

halstead volume: 484

halstead volume violation level: none

lines of code: 56 lines

lines of code violation level: none

maintainability index: 45

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 42 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_CoInvestigator stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_CoInvestigator._$_CoInvestigator stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_CoInvestigator.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_CoInvestigator.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 33

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_CoInvestigator.== stats:

cyclomatic complexity: 13

cyclomatic complexity violation level: none

halstead volume: 297

halstead volume violation level: none

lines of code: 21 lines

lines of code violation level: none

maintainability index: 54

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 18 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_CoInvestigator.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 126

halstead volume violation level: none

lines of code: 14 lines

lines of code violation level: none

maintainability index: 62

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 12 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_CoInvestigator.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_CoInvestigator.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_CoInvestigator stats:

number of methods: 13 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_CoInvestigator._CoInvestigator stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_CoInvestigator.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.contactId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.displayOrder stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.firstName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.lastName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.fullName stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.fullNameInverted stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.middleInitial stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.primaryEmail stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.publicEmail stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.nacontact stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_CoInvestigator.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$TaxonomyNodeFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode stats:

number of methods: 12 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$TaxonomyNode.taxonomyNodeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.taxonomyRootId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.parentNodeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.level stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.code stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.definition stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.exampleTechnologies stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.hasChildren stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.hasInteriorContent stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$TaxonomyNode.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$TaxonomyNodeCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

$TaxonomyNodeCopyWith.$TaxonomyNodeCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$TaxonomyNodeCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$TaxonomyNodeCopyWithImpl stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$TaxonomyNodeCopyWithImpl._$TaxonomyNodeCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$TaxonomyNodeCopyWithImpl.call stats:

cyclomatic complexity: 11

cyclomatic complexity violation level: none

halstead volume: 488

halstead volume violation level: none

lines of code: 56 lines

lines of code violation level: none

maintainability index: 45

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 42 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$$_TaxonomyNodeCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_TaxonomyNodeCopyWith._$$_TaxonomyNodeCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_TaxonomyNodeCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 12 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_TaxonomyNodeCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_TaxonomyNodeCopyWithImpl.__$$_TaxonomyNodeCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_TaxonomyNodeCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_TaxonomyNodeCopyWithImpl.call stats:

cyclomatic complexity: 11

cyclomatic complexity violation level: none

halstead volume: 484

halstead volume violation level: none

lines of code: 56 lines

lines of code violation level: none

maintainability index: 45

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 10

number of parameters violation level: none

source lines of code: 42 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 10 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_TaxonomyNode stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_TaxonomyNode._$_TaxonomyNode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_TaxonomyNode.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_TaxonomyNode.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 33

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_TaxonomyNode.== stats:

cyclomatic complexity: 13

cyclomatic complexity violation level: none

halstead volume: 297

halstead volume violation level: none

lines of code: 23 lines

lines of code violation level: none

maintainability index: 53

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 20 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_TaxonomyNode.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 126

halstead volume violation level: none

lines of code: 14 lines

lines of code violation level: none

maintainability index: 62

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 12 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_TaxonomyNode.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_TaxonomyNode.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_TaxonomyNode stats:

number of methods: 13 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_TaxonomyNode._TaxonomyNode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 11 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_TaxonomyNode.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.taxonomyNodeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.taxonomyRootId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.parentNodeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.level stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.code stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.title stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.definition stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.exampleTechnologies stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.hasChildren stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.hasInteriorContent stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_TaxonomyNode.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$SupportedMissionFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$SupportedMission stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$SupportedMission.lkuCodeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$SupportedMission.code stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$SupportedMission.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$SupportedMission.lkuCodeTypeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$SupportedMission.lkuCodeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$SupportedMission.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$SupportedMission.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$SupportedMissionCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$SupportedMissionCopyWith.$SupportedMissionCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$SupportedMissionCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$SupportedMissionCopyWith.lkuCodeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$SupportedMissionCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$SupportedMissionCopyWithImpl._$SupportedMissionCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$SupportedMissionCopyWithImpl.call stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 227

halstead volume violation level: none

lines of code: 31 lines

lines of code violation level: none

maintainability index: 54

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 22 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$SupportedMissionCopyWithImpl.lkuCodeType stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_SupportedMissionCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_SupportedMissionCopyWith._$$_SupportedMissionCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_SupportedMissionCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_SupportedMissionCopyWith.lkuCodeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_SupportedMissionCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_SupportedMissionCopyWithImpl.__$$_SupportedMissionCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_SupportedMissionCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_SupportedMissionCopyWithImpl.call stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 223

halstead volume violation level: none

lines of code: 31 lines

lines of code violation level: none

maintainability index: 54

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 22 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_SupportedMission stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_SupportedMission._$_SupportedMission stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_SupportedMission.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_SupportedMission.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 93

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_SupportedMission.== stats:

cyclomatic complexity: 8

cyclomatic complexity violation level: none

halstead volume: 152

halstead volume violation level: none

lines of code: 14 lines

lines of code violation level: none

maintainability index: 61

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 11 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_SupportedMission.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 57

halstead volume violation level: none

lines of code: 9 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 7 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_SupportedMission.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_SupportedMission.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_SupportedMission stats:

number of methods: 8 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_SupportedMission._SupportedMission stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_SupportedMission.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_SupportedMission.lkuCodeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_SupportedMission.code stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_SupportedMission.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_SupportedMission.lkuCodeTypeId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_SupportedMission.lkuCodeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_SupportedMission.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$LkuCodeTypeFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LkuCodeType stats:

number of methods: 4 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$LkuCodeType.codeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LkuCodeType.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LkuCodeType.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$LkuCodeType.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

$LkuCodeTypeCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

$LkuCodeTypeCopyWith.$LkuCodeTypeCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$LkuCodeTypeCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 2

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LkuCodeTypeCopyWithImpl stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$LkuCodeTypeCopyWithImpl._$LkuCodeTypeCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$LkuCodeTypeCopyWithImpl.call stats:

cyclomatic complexity: 3

cyclomatic complexity violation level: none

halstead volume: 83

halstead volume violation level: none

lines of code: 16 lines

lines of code violation level: none

maintainability index: 65

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 2

number of parameters violation level: none

source lines of code: 10 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
_$$_LkuCodeTypeCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_LkuCodeTypeCopyWith._$$_LkuCodeTypeCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_LkuCodeTypeCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 2

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_LkuCodeTypeCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_LkuCodeTypeCopyWithImpl.__$$_LkuCodeTypeCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

__$$_LkuCodeTypeCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_LkuCodeTypeCopyWithImpl.call stats:

cyclomatic complexity: 3

cyclomatic complexity violation level: none

halstead volume: 80

halstead volume violation level: none

lines of code: 16 lines

lines of code violation level: none

maintainability index: 65

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 2

number of parameters violation level: none

source lines of code: 10 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
_$_LkuCodeType stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_LkuCodeType._$_LkuCodeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$_LkuCodeType.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LkuCodeType.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 98

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_LkuCodeType.== stats:

cyclomatic complexity: 5

cyclomatic complexity violation level: none

halstead volume: 76

halstead volume violation level: none

lines of code: 9 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_LkuCodeType.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 23

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 78

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 4 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_LkuCodeType.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_LkuCodeType.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_LkuCodeType stats:

number of methods: 5 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_LkuCodeType._LkuCodeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_LkuCodeType.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LkuCodeType.codeType stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LkuCodeType.description stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_LkuCodeType.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$CountryFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Country stats:

number of methods: 5 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$Country.abbreviation stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Country.countryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Country.name stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Country.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$Country.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

$CountryCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

$CountryCopyWith.$CountryCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$CountryCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$CountryCopyWithImpl stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$CountryCopyWithImpl._$CountryCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$CountryCopyWithImpl.call stats:

cyclomatic complexity: 4

cyclomatic complexity violation level: none

halstead volume: 129

halstead volume violation level: none

lines of code: 21 lines

lines of code violation level: none

maintainability index: 60

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 14 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
_$$_CountryCopyWith stats:

number of methods: 2 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_CountryCopyWith._$$_CountryCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_CountryCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_CountryCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_CountryCopyWithImpl.__$$_CountryCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_CountryCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_CountryCopyWithImpl.call stats:

cyclomatic complexity: 4

cyclomatic complexity violation level: none

halstead volume: 125

halstead volume violation level: none

lines of code: 21 lines

lines of code violation level: none

maintainability index: 60

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 3

number of parameters violation level: none

source lines of code: 14 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
_$_Country stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_Country._$_Country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_Country.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_Country.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_Country.== stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 100

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 67

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 7 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_Country.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 34

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 74

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 5 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_Country.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_Country.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_Country stats:

number of methods: 6 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_Country._Country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_Country.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Country.abbreviation stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Country.countryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Country.name stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_Country.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$StatesFromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 3 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$States stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_$States.abbreviation stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$States.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$States.countryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$States.name stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$States.stateTerritoryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$States.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$States.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

$StatesCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

$StatesCopyWith.$StatesCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

$StatesCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

$StatesCopyWith.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$StatesCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$StatesCopyWithImpl._$StatesCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$StatesCopyWithImpl.call stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 227

halstead volume violation level: none

lines of code: 31 lines

lines of code violation level: none

maintainability index: 54

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 22 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$StatesCopyWithImpl.country stats:

cyclomatic complexity: 2

cyclomatic complexity violation level: none

halstead volume: 73

halstead volume violation level: none

lines of code: 10 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 2

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 6 lines

source lines of code violation level: none

+1 cyclo
_$$_StatesCopyWith stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$$_StatesCopyWith._$$_StatesCopyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_$$_StatesCopyWith.call stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 7 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$$_StatesCopyWith.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

__$$_StatesCopyWithImpl stats:

number of methods: 3 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

__$$_StatesCopyWithImpl.__$$_StatesCopyWithImpl stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 8

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_StatesCopyWithImpl._value stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 5

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 96

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

__$$_StatesCopyWithImpl.call stats:

cyclomatic complexity: 6

cyclomatic complexity violation level: none

halstead volume: 223

halstead volume violation level: none

lines of code: 31 lines

lines of code violation level: none

maintainability index: 54

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 5

number of parameters violation level: none

source lines of code: 22 lines

source lines of code violation level: none

long-parameter-list

Long Parameter List. This method require 5 arguments.

Based on configuration of this package, we don't recommend writing a method with argument count more than 4.

Open documentation

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_States stats:

number of methods: 7 methods

number of methods violation level: none

weight of a class: 1

weight of a class violation level: none

_$_States._$_States stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_States.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 2

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 92

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_States.toString stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 93

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 1 line

source lines of code violation level: none

_$_States.== stats:

cyclomatic complexity: 8

cyclomatic complexity violation level: none

halstead volume: 152

halstead volume violation level: none

lines of code: 13 lines

lines of code violation level: none

maintainability index: 62

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 1

number of parameters violation level: none

source lines of code: 10 lines

source lines of code violation level: none

+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
+1 cyclo
_$_States.hashCode stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 57

halstead volume violation level: none

lines of code: 9 lines

lines of code violation level: none

maintainability index: 70

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 7 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_$_States.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 12

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 86

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

_$_States.toJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 90

maintainability index violation level: none

maximum nesting level: 1

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 3 lines

source lines of code violation level: none

_States stats:

number of methods: 8 methods

number of methods violation level: none

weight of a class: 0

weight of a class violation level: none

_States._States stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 6 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

Warning: prefer-trailing-comma

Prefer trailing comma.

Open documentation

_States.fromJson stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 1 line

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_States.abbreviation stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_States.country stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_States.countryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_States.name stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_States.stateTerritoryId stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 2 lines

lines of code violation level: none

maintainability index: 100

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 0 lines

source lines of code violation level: none

_States.copyWith stats:

cyclomatic complexity: 1

cyclomatic complexity violation level: none

halstead volume: 0

halstead volume violation level: none

lines of code: 4 lines

lines of code violation level: none

maintainability index: 94

maintainability index violation level: none

maximum nesting level: 0

maximum nesting level violation level: none

number of parameters: 0

number of parameters violation level: none

source lines of code: 2 lines

source lines of code violation level: none

// coverage:ignore-file
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target

part of 'detail_modal.dart';

// **************************************************************************
// FreezedGenerator
// **************************************************************************

T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
    'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');

DetailModal _$DetailModalFromJson(Map<String, dynamic> json) {
  return _DetailModal.fromJson(json);
}

/// @nodoc
mixin _$DetailModal {
  Project get project => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $DetailModalCopyWith<DetailModal> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $DetailModalCopyWith<$Res> {
  factory $DetailModalCopyWith(
          DetailModal value, $Res Function(DetailModal) then) =
      _$DetailModalCopyWithImpl<$Res>;
  $Res call({Project project});

  $ProjectCopyWith<$Res> get project;
}

/// @nodoc
class _$DetailModalCopyWithImpl<$Res> implements $DetailModalCopyWith<$Res> {
  _$DetailModalCopyWithImpl(this._value, this._then);

  final DetailModal _value;
  // ignore: unused_field
  final $Res Function(DetailModal) _then;

  @override
  $Res call({
    Object? project = freezed,
  }) {
    return _then(_value.copyWith(
      project: project == freezed
          ? _value.project
          : project // ignore: cast_nullable_to_non_nullable
              as Project,
    ));
  }

  @override
  $ProjectCopyWith<$Res> get project {
    return $ProjectCopyWith<$Res>(_value.project, (value) {
      return _then(_value.copyWith(project: value));
    });
  }
}

/// @nodoc
abstract class _$$_DetailModalCopyWith<$Res>
    implements $DetailModalCopyWith<$Res> {
  factory _$$_DetailModalCopyWith(
          _$_DetailModal value, $Res Function(_$_DetailModal) then) =
      __$$_DetailModalCopyWithImpl<$Res>;
  @override
  $Res call({Project project});

  @override
  $ProjectCopyWith<$Res> get project;
}

/// @nodoc
class __$$_DetailModalCopyWithImpl<$Res> extends _$DetailModalCopyWithImpl<$Res>
    implements _$$_DetailModalCopyWith<$Res> {
  __$$_DetailModalCopyWithImpl(
      _$_DetailModal _value, $Res Function(_$_DetailModal) _then)
      : super(_value, (v) => _then(v as _$_DetailModal));

  @override
  _$_DetailModal get _value => super._value as _$_DetailModal;

  @override
  $Res call({
    Object? project = freezed,
  }) {
    return _then(_$_DetailModal(
      project: project == freezed
          ? _value.project
          : project // ignore: cast_nullable_to_non_nullable
              as Project,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_DetailModal implements _DetailModal {
  _$_DetailModal({required this.project});

  factory _$_DetailModal.fromJson(Map<String, dynamic> json) =>
      _$$_DetailModalFromJson(json);

  @override
  final Project project;

  @override
  String toString() {
    return 'DetailModal(project: $project)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_DetailModal &&
            const DeepCollectionEquality().equals(other.project, project));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode =>
      Object.hash(runtimeType, const DeepCollectionEquality().hash(project));

  @JsonKey(ignore: true)
  @override
  _$$_DetailModalCopyWith<_$_DetailModal> get copyWith =>
      __$$_DetailModalCopyWithImpl<_$_DetailModal>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_DetailModalToJson(
      this,
    );
  }
}

abstract class _DetailModal implements DetailModal {
  factory _DetailModal({required final Project project}) = _$_DetailModal;

  factory _DetailModal.fromJson(Map<String, dynamic> json) =
      _$_DetailModal.fromJson;

  @override
  Project get project;
  @override
  @JsonKey(ignore: true)
  _$$_DetailModalCopyWith<_$_DetailModal> get copyWith =>
      throw _privateConstructorUsedError;
}

Project _$ProjectFromJson(Map<String, dynamic> json) {
  return _Project.fromJson(json);
}

/// @nodoc
mixin _$Project {
  String? get acronym => throw _privateConstructorUsedError;
  int? get projectId => throw _privateConstructorUsedError;
  String? get title => throw _privateConstructorUsedError;
  List<TaxonomyNode>? get primaryTaxonomyNodes =>
      throw _privateConstructorUsedError;
  List<TaxonomyNode>? get additionalTaxonomyNodes =>
      throw _privateConstructorUsedError;
  int? get startTrl => throw _privateConstructorUsedError;
  int? get currentTrl => throw _privateConstructorUsedError;
  int? get endTrl => throw _privateConstructorUsedError;
  String? get benefits => throw _privateConstructorUsedError;
  String? get description => throw _privateConstructorUsedError;
  List<SupportedMission> get destinations => throw _privateConstructorUsedError;
  Map<String, dynamic>? get supportedMission =>
      throw _privateConstructorUsedError;
  int? get startYear => throw _privateConstructorUsedError;
  int? get startMonth => throw _privateConstructorUsedError;
  int? get endYear => throw _privateConstructorUsedError;
  int? get endMonth => throw _privateConstructorUsedError;
  String? get statusDescription => throw _privateConstructorUsedError;
  List<CoInvestigator>? get principalInvestigators =>
      throw _privateConstructorUsedError;
  List<CoInvestigator>? get programManagers =>
      throw _privateConstructorUsedError;
  List<CoInvestigator>? get projectManagers =>
      throw _privateConstructorUsedError;
  List<CoInvestigator>? get coInvestigators =>
      throw _privateConstructorUsedError;
  String? get website => throw _privateConstructorUsedError;
  List<LibraryItem>? get libraryItems => throw _privateConstructorUsedError;
  List<dynamic>? get transitions => throw _privateConstructorUsedError;
  Map<String, dynamic>? get primaryImage => throw _privateConstructorUsedError;
  Map<String, dynamic>? get responsibleMd => throw _privateConstructorUsedError;
  Map<String, dynamic>? get program => throw _privateConstructorUsedError;
  Map<String, dynamic>? get leadOrganization =>
      throw _privateConstructorUsedError;
  List<dynamic>? get statesWithWork => throw _privateConstructorUsedError;
  String? get lastUpdated => throw _privateConstructorUsedError;
  String? get releaseStatusString => throw _privateConstructorUsedError;
  String? get endDateString => throw _privateConstructorUsedError;
  String? get startDateString => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $ProjectCopyWith<Project> get copyWith => throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $ProjectCopyWith<$Res> {
  factory $ProjectCopyWith(Project value, $Res Function(Project) then) =
      _$ProjectCopyWithImpl<$Res>;
  $Res call(
      {String? acronym,
      int? projectId,
      String? title,
      List<TaxonomyNode>? primaryTaxonomyNodes,
      List<TaxonomyNode>? additionalTaxonomyNodes,
      int? startTrl,
      int? currentTrl,
      int? endTrl,
      String? benefits,
      String? description,
      List<SupportedMission> destinations,
      Map<String, dynamic>? supportedMission,
      int? startYear,
      int? startMonth,
      int? endYear,
      int? endMonth,
      String? statusDescription,
      List<CoInvestigator>? principalInvestigators,
      List<CoInvestigator>? programManagers,
      List<CoInvestigator>? projectManagers,
      List<CoInvestigator>? coInvestigators,
      String? website,
      List<LibraryItem>? libraryItems,
      List<dynamic>? transitions,
      Map<String, dynamic>? primaryImage,
      Map<String, dynamic>? responsibleMd,
      Map<String, dynamic>? program,
      Map<String, dynamic>? leadOrganization,
      List<dynamic>? statesWithWork,
      String? lastUpdated,
      String? releaseStatusString,
      String? endDateString,
      String? startDateString});
}

/// @nodoc
class _$ProjectCopyWithImpl<$Res> implements $ProjectCopyWith<$Res> {
  _$ProjectCopyWithImpl(this._value, this._then);

  final Project _value;
  // ignore: unused_field
  final $Res Function(Project) _then;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? projectId = freezed,
    Object? title = freezed,
    Object? primaryTaxonomyNodes = freezed,
    Object? additionalTaxonomyNodes = freezed,
    Object? startTrl = freezed,
    Object? currentTrl = freezed,
    Object? endTrl = freezed,
    Object? benefits = freezed,
    Object? description = freezed,
    Object? destinations = freezed,
    Object? supportedMission = freezed,
    Object? startYear = freezed,
    Object? startMonth = freezed,
    Object? endYear = freezed,
    Object? endMonth = freezed,
    Object? statusDescription = freezed,
    Object? principalInvestigators = freezed,
    Object? programManagers = freezed,
    Object? projectManagers = freezed,
    Object? coInvestigators = freezed,
    Object? website = freezed,
    Object? libraryItems = freezed,
    Object? transitions = freezed,
    Object? primaryImage = freezed,
    Object? responsibleMd = freezed,
    Object? program = freezed,
    Object? leadOrganization = freezed,
    Object? statesWithWork = freezed,
    Object? lastUpdated = freezed,
    Object? releaseStatusString = freezed,
    Object? endDateString = freezed,
    Object? startDateString = freezed,
  }) {
    return _then(_value.copyWith(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      projectId: projectId == freezed
          ? _value.projectId
          : projectId // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
      primaryTaxonomyNodes: primaryTaxonomyNodes == freezed
          ? _value.primaryTaxonomyNodes
          : primaryTaxonomyNodes // ignore: cast_nullable_to_non_nullable
              as List<TaxonomyNode>?,
      additionalTaxonomyNodes: additionalTaxonomyNodes == freezed
          ? _value.additionalTaxonomyNodes
          : additionalTaxonomyNodes // ignore: cast_nullable_to_non_nullable
              as List<TaxonomyNode>?,
      startTrl: startTrl == freezed
          ? _value.startTrl
          : startTrl // ignore: cast_nullable_to_non_nullable
              as int?,
      currentTrl: currentTrl == freezed
          ? _value.currentTrl
          : currentTrl // ignore: cast_nullable_to_non_nullable
              as int?,
      endTrl: endTrl == freezed
          ? _value.endTrl
          : endTrl // ignore: cast_nullable_to_non_nullable
              as int?,
      benefits: benefits == freezed
          ? _value.benefits
          : benefits // ignore: cast_nullable_to_non_nullable
              as String?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      destinations: destinations == freezed
          ? _value.destinations
          : destinations // ignore: cast_nullable_to_non_nullable
              as List<SupportedMission>,
      supportedMission: supportedMission == freezed
          ? _value.supportedMission
          : supportedMission // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      startYear: startYear == freezed
          ? _value.startYear
          : startYear // ignore: cast_nullable_to_non_nullable
              as int?,
      startMonth: startMonth == freezed
          ? _value.startMonth
          : startMonth // ignore: cast_nullable_to_non_nullable
              as int?,
      endYear: endYear == freezed
          ? _value.endYear
          : endYear // ignore: cast_nullable_to_non_nullable
              as int?,
      endMonth: endMonth == freezed
          ? _value.endMonth
          : endMonth // ignore: cast_nullable_to_non_nullable
              as int?,
      statusDescription: statusDescription == freezed
          ? _value.statusDescription
          : statusDescription // ignore: cast_nullable_to_non_nullable
              as String?,
      principalInvestigators: principalInvestigators == freezed
          ? _value.principalInvestigators
          : principalInvestigators // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      programManagers: programManagers == freezed
          ? _value.programManagers
          : programManagers // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      projectManagers: projectManagers == freezed
          ? _value.projectManagers
          : projectManagers // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      coInvestigators: coInvestigators == freezed
          ? _value.coInvestigators
          : coInvestigators // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      website: website == freezed
          ? _value.website
          : website // ignore: cast_nullable_to_non_nullable
              as String?,
      libraryItems: libraryItems == freezed
          ? _value.libraryItems
          : libraryItems // ignore: cast_nullable_to_non_nullable
              as List<LibraryItem>?,
      transitions: transitions == freezed
          ? _value.transitions
          : transitions // ignore: cast_nullable_to_non_nullable
              as List<dynamic>?,
      primaryImage: primaryImage == freezed
          ? _value.primaryImage
          : primaryImage // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      responsibleMd: responsibleMd == freezed
          ? _value.responsibleMd
          : responsibleMd // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      program: program == freezed
          ? _value.program
          : program // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      leadOrganization: leadOrganization == freezed
          ? _value.leadOrganization
          : leadOrganization // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      statesWithWork: statesWithWork == freezed
          ? _value.statesWithWork
          : statesWithWork // ignore: cast_nullable_to_non_nullable
              as List<dynamic>?,
      lastUpdated: lastUpdated == freezed
          ? _value.lastUpdated
          : lastUpdated // ignore: cast_nullable_to_non_nullable
              as String?,
      releaseStatusString: releaseStatusString == freezed
          ? _value.releaseStatusString
          : releaseStatusString // ignore: cast_nullable_to_non_nullable
              as String?,
      endDateString: endDateString == freezed
          ? _value.endDateString
          : endDateString // ignore: cast_nullable_to_non_nullable
              as String?,
      startDateString: startDateString == freezed
          ? _value.startDateString
          : startDateString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
abstract class _$$_ProjectCopyWith<$Res> implements $ProjectCopyWith<$Res> {
  factory _$$_ProjectCopyWith(
          _$_Project value, $Res Function(_$_Project) then) =
      __$$_ProjectCopyWithImpl<$Res>;
  @override
  $Res call(
      {String? acronym,
      int? projectId,
      String? title,
      List<TaxonomyNode>? primaryTaxonomyNodes,
      List<TaxonomyNode>? additionalTaxonomyNodes,
      int? startTrl,
      int? currentTrl,
      int? endTrl,
      String? benefits,
      String? description,
      List<SupportedMission> destinations,
      Map<String, dynamic>? supportedMission,
      int? startYear,
      int? startMonth,
      int? endYear,
      int? endMonth,
      String? statusDescription,
      List<CoInvestigator>? principalInvestigators,
      List<CoInvestigator>? programManagers,
      List<CoInvestigator>? projectManagers,
      List<CoInvestigator>? coInvestigators,
      String? website,
      List<LibraryItem>? libraryItems,
      List<dynamic>? transitions,
      Map<String, dynamic>? primaryImage,
      Map<String, dynamic>? responsibleMd,
      Map<String, dynamic>? program,
      Map<String, dynamic>? leadOrganization,
      List<dynamic>? statesWithWork,
      String? lastUpdated,
      String? releaseStatusString,
      String? endDateString,
      String? startDateString});
}

/// @nodoc
class __$$_ProjectCopyWithImpl<$Res> extends _$ProjectCopyWithImpl<$Res>
    implements _$$_ProjectCopyWith<$Res> {
  __$$_ProjectCopyWithImpl(_$_Project _value, $Res Function(_$_Project) _then)
      : super(_value, (v) => _then(v as _$_Project));

  @override
  _$_Project get _value => super._value as _$_Project;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? projectId = freezed,
    Object? title = freezed,
    Object? primaryTaxonomyNodes = freezed,
    Object? additionalTaxonomyNodes = freezed,
    Object? startTrl = freezed,
    Object? currentTrl = freezed,
    Object? endTrl = freezed,
    Object? benefits = freezed,
    Object? description = freezed,
    Object? destinations = freezed,
    Object? supportedMission = freezed,
    Object? startYear = freezed,
    Object? startMonth = freezed,
    Object? endYear = freezed,
    Object? endMonth = freezed,
    Object? statusDescription = freezed,
    Object? principalInvestigators = freezed,
    Object? programManagers = freezed,
    Object? projectManagers = freezed,
    Object? coInvestigators = freezed,
    Object? website = freezed,
    Object? libraryItems = freezed,
    Object? transitions = freezed,
    Object? primaryImage = freezed,
    Object? responsibleMd = freezed,
    Object? program = freezed,
    Object? leadOrganization = freezed,
    Object? statesWithWork = freezed,
    Object? lastUpdated = freezed,
    Object? releaseStatusString = freezed,
    Object? endDateString = freezed,
    Object? startDateString = freezed,
  }) {
    return _then(_$_Project(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      projectId: projectId == freezed
          ? _value.projectId
          : projectId // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
      primaryTaxonomyNodes: primaryTaxonomyNodes == freezed
          ? _value._primaryTaxonomyNodes
          : primaryTaxonomyNodes // ignore: cast_nullable_to_non_nullable
              as List<TaxonomyNode>?,
      additionalTaxonomyNodes: additionalTaxonomyNodes == freezed
          ? _value._additionalTaxonomyNodes
          : additionalTaxonomyNodes // ignore: cast_nullable_to_non_nullable
              as List<TaxonomyNode>?,
      startTrl: startTrl == freezed
          ? _value.startTrl
          : startTrl // ignore: cast_nullable_to_non_nullable
              as int?,
      currentTrl: currentTrl == freezed
          ? _value.currentTrl
          : currentTrl // ignore: cast_nullable_to_non_nullable
              as int?,
      endTrl: endTrl == freezed
          ? _value.endTrl
          : endTrl // ignore: cast_nullable_to_non_nullable
              as int?,
      benefits: benefits == freezed
          ? _value.benefits
          : benefits // ignore: cast_nullable_to_non_nullable
              as String?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      destinations: destinations == freezed
          ? _value._destinations
          : destinations // ignore: cast_nullable_to_non_nullable
              as List<SupportedMission>,
      supportedMission: supportedMission == freezed
          ? _value._supportedMission
          : supportedMission // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      startYear: startYear == freezed
          ? _value.startYear
          : startYear // ignore: cast_nullable_to_non_nullable
              as int?,
      startMonth: startMonth == freezed
          ? _value.startMonth
          : startMonth // ignore: cast_nullable_to_non_nullable
              as int?,
      endYear: endYear == freezed
          ? _value.endYear
          : endYear // ignore: cast_nullable_to_non_nullable
              as int?,
      endMonth: endMonth == freezed
          ? _value.endMonth
          : endMonth // ignore: cast_nullable_to_non_nullable
              as int?,
      statusDescription: statusDescription == freezed
          ? _value.statusDescription
          : statusDescription // ignore: cast_nullable_to_non_nullable
              as String?,
      principalInvestigators: principalInvestigators == freezed
          ? _value._principalInvestigators
          : principalInvestigators // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      programManagers: programManagers == freezed
          ? _value._programManagers
          : programManagers // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      projectManagers: projectManagers == freezed
          ? _value._projectManagers
          : projectManagers // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      coInvestigators: coInvestigators == freezed
          ? _value._coInvestigators
          : coInvestigators // ignore: cast_nullable_to_non_nullable
              as List<CoInvestigator>?,
      website: website == freezed
          ? _value.website
          : website // ignore: cast_nullable_to_non_nullable
              as String?,
      libraryItems: libraryItems == freezed
          ? _value._libraryItems
          : libraryItems // ignore: cast_nullable_to_non_nullable
              as List<LibraryItem>?,
      transitions: transitions == freezed
          ? _value._transitions
          : transitions // ignore: cast_nullable_to_non_nullable
              as List<dynamic>?,
      primaryImage: primaryImage == freezed
          ? _value._primaryImage
          : primaryImage // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      responsibleMd: responsibleMd == freezed
          ? _value._responsibleMd
          : responsibleMd // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      program: program == freezed
          ? _value._program
          : program // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      leadOrganization: leadOrganization == freezed
          ? _value._leadOrganization
          : leadOrganization // ignore: cast_nullable_to_non_nullable
              as Map<String, dynamic>?,
      statesWithWork: statesWithWork == freezed
          ? _value._statesWithWork
          : statesWithWork // ignore: cast_nullable_to_non_nullable
              as List<dynamic>?,
      lastUpdated: lastUpdated == freezed
          ? _value.lastUpdated
          : lastUpdated // ignore: cast_nullable_to_non_nullable
              as String?,
      releaseStatusString: releaseStatusString == freezed
          ? _value.releaseStatusString
          : releaseStatusString // ignore: cast_nullable_to_non_nullable
              as String?,
      endDateString: endDateString == freezed
          ? _value.endDateString
          : endDateString // ignore: cast_nullable_to_non_nullable
              as String?,
      startDateString: startDateString == freezed
          ? _value.startDateString
          : startDateString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_Project implements _Project {
  _$_Project(
      {required this.acronym,
      required this.projectId,
      required this.title,
      required final List<TaxonomyNode>? primaryTaxonomyNodes,
      required final List<TaxonomyNode>? additionalTaxonomyNodes,
      required this.startTrl,
      required this.currentTrl,
      required this.endTrl,
      required this.benefits,
      required this.description,
      required final List<SupportedMission> destinations,
      required final Map<String, dynamic>? supportedMission,
      required this.startYear,
      required this.startMonth,
      required this.endYear,
      required this.endMonth,
      required this.statusDescription,
      required final List<CoInvestigator>? principalInvestigators,
      required final List<CoInvestigator>? programManagers,
      required final List<CoInvestigator>? projectManagers,
      required final List<CoInvestigator>? coInvestigators,
      required this.website,
      required final List<LibraryItem>? libraryItems,
      required final List<dynamic>? transitions,
      required final Map<String, dynamic>? primaryImage,
      required final Map<String, dynamic>? responsibleMd,
      required final Map<String, dynamic>? program,
      required final Map<String, dynamic>? leadOrganization,
      required final List<dynamic>? statesWithWork,
      required this.lastUpdated,
      required this.releaseStatusString,
      required this.endDateString,
      required this.startDateString})
      : _primaryTaxonomyNodes = primaryTaxonomyNodes,
        _additionalTaxonomyNodes = additionalTaxonomyNodes,
        _destinations = destinations,
        _supportedMission = supportedMission,
        _principalInvestigators = principalInvestigators,
        _programManagers = programManagers,
        _projectManagers = projectManagers,
        _coInvestigators = coInvestigators,
        _libraryItems = libraryItems,
        _transitions = transitions,
        _primaryImage = primaryImage,
        _responsibleMd = responsibleMd,
        _program = program,
        _leadOrganization = leadOrganization,
        _statesWithWork = statesWithWork;

  factory _$_Project.fromJson(Map<String, dynamic> json) =>
      _$$_ProjectFromJson(json);

  @override
  final String? acronym;
  @override
  final int? projectId;
  @override
  final String? title;
  final List<TaxonomyNode>? _primaryTaxonomyNodes;
  @override
  List<TaxonomyNode>? get primaryTaxonomyNodes {
    final value = _primaryTaxonomyNodes;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  final List<TaxonomyNode>? _additionalTaxonomyNodes;
  @override
  List<TaxonomyNode>? get additionalTaxonomyNodes {
    final value = _additionalTaxonomyNodes;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  @override
  final int? startTrl;
  @override
  final int? currentTrl;
  @override
  final int? endTrl;
  @override
  final String? benefits;
  @override
  final String? description;
  final List<SupportedMission> _destinations;
  @override
  List<SupportedMission> get destinations {
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(_destinations);
  }

  final Map<String, dynamic>? _supportedMission;
  @override
  Map<String, dynamic>? get supportedMission {
    final value = _supportedMission;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableMapView(value);
  }

  @override
  final int? startYear;
  @override
  final int? startMonth;
  @override
  final int? endYear;
  @override
  final int? endMonth;
  @override
  final String? statusDescription;
  final List<CoInvestigator>? _principalInvestigators;
  @override
  List<CoInvestigator>? get principalInvestigators {
    final value = _principalInvestigators;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  final List<CoInvestigator>? _programManagers;
  @override
  List<CoInvestigator>? get programManagers {
    final value = _programManagers;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  final List<CoInvestigator>? _projectManagers;
  @override
  List<CoInvestigator>? get projectManagers {
    final value = _projectManagers;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  final List<CoInvestigator>? _coInvestigators;
  @override
  List<CoInvestigator>? get coInvestigators {
    final value = _coInvestigators;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  @override
  final String? website;
  final List<LibraryItem>? _libraryItems;
  @override
  List<LibraryItem>? get libraryItems {
    final value = _libraryItems;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  final List<dynamic>? _transitions;
  @override
  List<dynamic>? get transitions {
    final value = _transitions;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  final Map<String, dynamic>? _primaryImage;
  @override
  Map<String, dynamic>? get primaryImage {
    final value = _primaryImage;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableMapView(value);
  }

  final Map<String, dynamic>? _responsibleMd;
  @override
  Map<String, dynamic>? get responsibleMd {
    final value = _responsibleMd;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableMapView(value);
  }

  final Map<String, dynamic>? _program;
  @override
  Map<String, dynamic>? get program {
    final value = _program;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableMapView(value);
  }

  final Map<String, dynamic>? _leadOrganization;
  @override
  Map<String, dynamic>? get leadOrganization {
    final value = _leadOrganization;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableMapView(value);
  }

  final List<dynamic>? _statesWithWork;
  @override
  List<dynamic>? get statesWithWork {
    final value = _statesWithWork;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  @override
  final String? lastUpdated;
  @override
  final String? releaseStatusString;
  @override
  final String? endDateString;
  @override
  final String? startDateString;

  @override
  String toString() {
    return 'Project(acronym: $acronym, projectId: $projectId, title: $title, primaryTaxonomyNodes: $primaryTaxonomyNodes, additionalTaxonomyNodes: $additionalTaxonomyNodes, startTrl: $startTrl, currentTrl: $currentTrl, endTrl: $endTrl, benefits: $benefits, description: $description, destinations: $destinations, supportedMission: $supportedMission, startYear: $startYear, startMonth: $startMonth, endYear: $endYear, endMonth: $endMonth, statusDescription: $statusDescription, principalInvestigators: $principalInvestigators, programManagers: $programManagers, projectManagers: $projectManagers, coInvestigators: $coInvestigators, website: $website, libraryItems: $libraryItems, transitions: $transitions, primaryImage: $primaryImage, responsibleMd: $responsibleMd, program: $program, leadOrganization: $leadOrganization, statesWithWork: $statesWithWork, lastUpdated: $lastUpdated, releaseStatusString: $releaseStatusString, endDateString: $endDateString, startDateString: $startDateString)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_Project &&
            const DeepCollectionEquality().equals(other.acronym, acronym) &&
            const DeepCollectionEquality().equals(other.projectId, projectId) &&
            const DeepCollectionEquality().equals(other.title, title) &&
            const DeepCollectionEquality()
                .equals(other._primaryTaxonomyNodes, _primaryTaxonomyNodes) &&
            const DeepCollectionEquality().equals(
                other._additionalTaxonomyNodes, _additionalTaxonomyNodes) &&
            const DeepCollectionEquality().equals(other.startTrl, startTrl) &&
            const DeepCollectionEquality()
                .equals(other.currentTrl, currentTrl) &&
            const DeepCollectionEquality().equals(other.endTrl, endTrl) &&
            const DeepCollectionEquality().equals(other.benefits, benefits) &&
            const DeepCollectionEquality()
                .equals(other.description, description) &&
            const DeepCollectionEquality()
                .equals(other._destinations, _destinations) &&
            const DeepCollectionEquality()
                .equals(other._supportedMission, _supportedMission) &&
            const DeepCollectionEquality().equals(other.startYear, startYear) &&
            const DeepCollectionEquality()
                .equals(other.startMonth, startMonth) &&
            const DeepCollectionEquality().equals(other.endYear, endYear) &&
            const DeepCollectionEquality().equals(other.endMonth, endMonth) &&
            const DeepCollectionEquality()
                .equals(other.statusDescription, statusDescription) &&
            const DeepCollectionEquality().equals(
                other._principalInvestigators, _principalInvestigators) &&
            const DeepCollectionEquality()
                .equals(other._programManagers, _programManagers) &&
            const DeepCollectionEquality()
                .equals(other._projectManagers, _projectManagers) &&
            const DeepCollectionEquality()
                .equals(other._coInvestigators, _coInvestigators) &&
            const DeepCollectionEquality().equals(other.website, website) &&
            const DeepCollectionEquality()
                .equals(other._libraryItems, _libraryItems) &&
            const DeepCollectionEquality()
                .equals(other._transitions, _transitions) &&
            const DeepCollectionEquality()
                .equals(other._primaryImage, _primaryImage) &&
            const DeepCollectionEquality()
                .equals(other._responsibleMd, _responsibleMd) &&
            const DeepCollectionEquality().equals(other._program, _program) &&
            const DeepCollectionEquality()
                .equals(other._leadOrganization, _leadOrganization) &&
            const DeepCollectionEquality()
                .equals(other._statesWithWork, _statesWithWork) &&
            const DeepCollectionEquality()
                .equals(other.lastUpdated, lastUpdated) &&
            const DeepCollectionEquality()
                .equals(other.releaseStatusString, releaseStatusString) &&
            const DeepCollectionEquality()
                .equals(other.endDateString, endDateString) &&
            const DeepCollectionEquality()
                .equals(other.startDateString, startDateString));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hashAll([
        runtimeType,
        const DeepCollectionEquality().hash(acronym),
        const DeepCollectionEquality().hash(projectId),
        const DeepCollectionEquality().hash(title),
        const DeepCollectionEquality().hash(_primaryTaxonomyNodes),
        const DeepCollectionEquality().hash(_additionalTaxonomyNodes),
        const DeepCollectionEquality().hash(startTrl),
        const DeepCollectionEquality().hash(currentTrl),
        const DeepCollectionEquality().hash(endTrl),
        const DeepCollectionEquality().hash(benefits),
        const DeepCollectionEquality().hash(description),
        const DeepCollectionEquality().hash(_destinations),
        const DeepCollectionEquality().hash(_supportedMission),
        const DeepCollectionEquality().hash(startYear),
        const DeepCollectionEquality().hash(startMonth),
        const DeepCollectionEquality().hash(endYear),
        const DeepCollectionEquality().hash(endMonth),
        const DeepCollectionEquality().hash(statusDescription),
        const DeepCollectionEquality().hash(_principalInvestigators),
        const DeepCollectionEquality().hash(_programManagers),
        const DeepCollectionEquality().hash(_projectManagers),
        const DeepCollectionEquality().hash(_coInvestigators),
        const DeepCollectionEquality().hash(website),
        const DeepCollectionEquality().hash(_libraryItems),
        const DeepCollectionEquality().hash(_transitions),
        const DeepCollectionEquality().hash(_primaryImage),
        const DeepCollectionEquality().hash(_responsibleMd),
        const DeepCollectionEquality().hash(_program),
        const DeepCollectionEquality().hash(_leadOrganization),
        const DeepCollectionEquality().hash(_statesWithWork),
        const DeepCollectionEquality().hash(lastUpdated),
        const DeepCollectionEquality().hash(releaseStatusString),
        const DeepCollectionEquality().hash(endDateString),
        const DeepCollectionEquality().hash(startDateString)
      ]);

  @JsonKey(ignore: true)
  @override
  _$$_ProjectCopyWith<_$_Project> get copyWith =>
      __$$_ProjectCopyWithImpl<_$_Project>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_ProjectToJson(
      this,
    );
  }
}

abstract class _Project implements Project {
  factory _Project(
      {required final String? acronym,
      required final int? projectId,
      required final String? title,
      required final List<TaxonomyNode>? primaryTaxonomyNodes,
      required final List<TaxonomyNode>? additionalTaxonomyNodes,
      required final int? startTrl,
      required final int? currentTrl,
      required final int? endTrl,
      required final String? benefits,
      required final String? description,
      required final List<SupportedMission> destinations,
      required final Map<String, dynamic>? supportedMission,
      required final int? startYear,
      required final int? startMonth,
      required final int? endYear,
      required final int? endMonth,
      required final String? statusDescription,
      required final List<CoInvestigator>? principalInvestigators,
      required final List<CoInvestigator>? programManagers,
      required final List<CoInvestigator>? projectManagers,
      required final List<CoInvestigator>? coInvestigators,
      required final String? website,
      required final List<LibraryItem>? libraryItems,
      required final List<dynamic>? transitions,
      required final Map<String, dynamic>? primaryImage,
      required final Map<String, dynamic>? responsibleMd,
      required final Map<String, dynamic>? program,
      required final Map<String, dynamic>? leadOrganization,
      required final List<dynamic>? statesWithWork,
      required final String? lastUpdated,
      required final String? releaseStatusString,
      required final String? endDateString,
      required final String? startDateString}) = _$_Project;

  factory _Project.fromJson(Map<String, dynamic> json) = _$_Project.fromJson;

  @override
  String? get acronym;
  @override
  int? get projectId;
  @override
  String? get title;
  @override
  List<TaxonomyNode>? get primaryTaxonomyNodes;
  @override
  List<TaxonomyNode>? get additionalTaxonomyNodes;
  @override
  int? get startTrl;
  @override
  int? get currentTrl;
  @override
  int? get endTrl;
  @override
  String? get benefits;
  @override
  String? get description;
  @override
  List<SupportedMission> get destinations;
  @override
  Map<String, dynamic>? get supportedMission;
  @override
  int? get startYear;
  @override
  int? get startMonth;
  @override
  int? get endYear;
  @override
  int? get endMonth;
  @override
  String? get statusDescription;
  @override
  List<CoInvestigator>? get principalInvestigators;
  @override
  List<CoInvestigator>? get programManagers;
  @override
  List<CoInvestigator>? get projectManagers;
  @override
  List<CoInvestigator>? get coInvestigators;
  @override
  String? get website;
  @override
  List<LibraryItem>? get libraryItems;
  @override
  List<dynamic>? get transitions;
  @override
  Map<String, dynamic>? get primaryImage;
  @override
  Map<String, dynamic>? get responsibleMd;
  @override
  Map<String, dynamic>? get program;
  @override
  Map<String, dynamic>? get leadOrganization;
  @override
  List<dynamic>? get statesWithWork;
  @override
  String? get lastUpdated;
  @override
  String? get releaseStatusString;
  @override
  String? get endDateString;
  @override
  String? get startDateString;
  @override
  @JsonKey(ignore: true)
  _$$_ProjectCopyWith<_$_Project> get copyWith =>
      throw _privateConstructorUsedError;
}

ResponsibleMd _$ResponsibleMdFromJson(Map<String, dynamic> json) {
  return _ResponsibleMd.fromJson(json);
}

/// @nodoc
mixin _$ResponsibleMd {
  String? get acronym => throw _privateConstructorUsedError;
  bool? get canUserEdit => throw _privateConstructorUsedError;
  String? get city => throw _privateConstructorUsedError;
  bool? get responsibleMdExternal => throw _privateConstructorUsedError;
  int? get linkCount => throw _privateConstructorUsedError;
  int? get organizationId => throw _privateConstructorUsedError;
  String? get organizationName => throw _privateConstructorUsedError;
  String? get organizationType => throw _privateConstructorUsedError;
  bool? get naorganization => throw _privateConstructorUsedError;
  String? get organizationTypePretty => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $ResponsibleMdCopyWith<ResponsibleMd> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $ResponsibleMdCopyWith<$Res> {
  factory $ResponsibleMdCopyWith(
          ResponsibleMd value, $Res Function(ResponsibleMd) then) =
      _$ResponsibleMdCopyWithImpl<$Res>;
  $Res call(
      {String? acronym,
      bool? canUserEdit,
      String? city,
      bool? responsibleMdExternal,
      int? linkCount,
      int? organizationId,
      String? organizationName,
      String? organizationType,
      bool? naorganization,
      String? organizationTypePretty});
}

/// @nodoc
class _$ResponsibleMdCopyWithImpl<$Res>
    implements $ResponsibleMdCopyWith<$Res> {
  _$ResponsibleMdCopyWithImpl(this._value, this._then);

  final ResponsibleMd _value;
  // ignore: unused_field
  final $Res Function(ResponsibleMd) _then;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? canUserEdit = freezed,
    Object? city = freezed,
    Object? responsibleMdExternal = freezed,
    Object? linkCount = freezed,
    Object? organizationId = freezed,
    Object? organizationName = freezed,
    Object? organizationType = freezed,
    Object? naorganization = freezed,
    Object? organizationTypePretty = freezed,
  }) {
    return _then(_value.copyWith(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      canUserEdit: canUserEdit == freezed
          ? _value.canUserEdit
          : canUserEdit // ignore: cast_nullable_to_non_nullable
              as bool?,
      city: city == freezed
          ? _value.city
          : city // ignore: cast_nullable_to_non_nullable
              as String?,
      responsibleMdExternal: responsibleMdExternal == freezed
          ? _value.responsibleMdExternal
          : responsibleMdExternal // ignore: cast_nullable_to_non_nullable
              as bool?,
      linkCount: linkCount == freezed
          ? _value.linkCount
          : linkCount // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationId: organizationId == freezed
          ? _value.organizationId
          : organizationId // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationName: organizationName == freezed
          ? _value.organizationName
          : organizationName // ignore: cast_nullable_to_non_nullable
              as String?,
      organizationType: organizationType == freezed
          ? _value.organizationType
          : organizationType // ignore: cast_nullable_to_non_nullable
              as String?,
      naorganization: naorganization == freezed
          ? _value.naorganization
          : naorganization // ignore: cast_nullable_to_non_nullable
              as bool?,
      organizationTypePretty: organizationTypePretty == freezed
          ? _value.organizationTypePretty
          : organizationTypePretty // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
abstract class _$$_ResponsibleMdCopyWith<$Res>
    implements $ResponsibleMdCopyWith<$Res> {
  factory _$$_ResponsibleMdCopyWith(
          _$_ResponsibleMd value, $Res Function(_$_ResponsibleMd) then) =
      __$$_ResponsibleMdCopyWithImpl<$Res>;
  @override
  $Res call(
      {String? acronym,
      bool? canUserEdit,
      String? city,
      bool? responsibleMdExternal,
      int? linkCount,
      int? organizationId,
      String? organizationName,
      String? organizationType,
      bool? naorganization,
      String? organizationTypePretty});
}

/// @nodoc
class __$$_ResponsibleMdCopyWithImpl<$Res>
    extends _$ResponsibleMdCopyWithImpl<$Res>
    implements _$$_ResponsibleMdCopyWith<$Res> {
  __$$_ResponsibleMdCopyWithImpl(
      _$_ResponsibleMd _value, $Res Function(_$_ResponsibleMd) _then)
      : super(_value, (v) => _then(v as _$_ResponsibleMd));

  @override
  _$_ResponsibleMd get _value => super._value as _$_ResponsibleMd;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? canUserEdit = freezed,
    Object? city = freezed,
    Object? responsibleMdExternal = freezed,
    Object? linkCount = freezed,
    Object? organizationId = freezed,
    Object? organizationName = freezed,
    Object? organizationType = freezed,
    Object? naorganization = freezed,
    Object? organizationTypePretty = freezed,
  }) {
    return _then(_$_ResponsibleMd(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      canUserEdit: canUserEdit == freezed
          ? _value.canUserEdit
          : canUserEdit // ignore: cast_nullable_to_non_nullable
              as bool?,
      city: city == freezed
          ? _value.city
          : city // ignore: cast_nullable_to_non_nullable
              as String?,
      responsibleMdExternal: responsibleMdExternal == freezed
          ? _value.responsibleMdExternal
          : responsibleMdExternal // ignore: cast_nullable_to_non_nullable
              as bool?,
      linkCount: linkCount == freezed
          ? _value.linkCount
          : linkCount // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationId: organizationId == freezed
          ? _value.organizationId
          : organizationId // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationName: organizationName == freezed
          ? _value.organizationName
          : organizationName // ignore: cast_nullable_to_non_nullable
              as String?,
      organizationType: organizationType == freezed
          ? _value.organizationType
          : organizationType // ignore: cast_nullable_to_non_nullable
              as String?,
      naorganization: naorganization == freezed
          ? _value.naorganization
          : naorganization // ignore: cast_nullable_to_non_nullable
              as bool?,
      organizationTypePretty: organizationTypePretty == freezed
          ? _value.organizationTypePretty
          : organizationTypePretty // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_ResponsibleMd implements _ResponsibleMd {
  _$_ResponsibleMd(
      {required this.acronym,
      required this.canUserEdit,
      required this.city,
      required this.responsibleMdExternal,
      required this.linkCount,
      required this.organizationId,
      required this.organizationName,
      required this.organizationType,
      required this.naorganization,
      required this.organizationTypePretty});

  factory _$_ResponsibleMd.fromJson(Map<String, dynamic> json) =>
      _$$_ResponsibleMdFromJson(json);

  @override
  final String? acronym;
  @override
  final bool? canUserEdit;
  @override
  final String? city;
  @override
  final bool? responsibleMdExternal;
  @override
  final int? linkCount;
  @override
  final int? organizationId;
  @override
  final String? organizationName;
  @override
  final String? organizationType;
  @override
  final bool? naorganization;
  @override
  final String? organizationTypePretty;

  @override
  String toString() {
    return 'ResponsibleMd(acronym: $acronym, canUserEdit: $canUserEdit, city: $city, responsibleMdExternal: $responsibleMdExternal, linkCount: $linkCount, organizationId: $organizationId, organizationName: $organizationName, organizationType: $organizationType, naorganization: $naorganization, organizationTypePretty: $organizationTypePretty)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_ResponsibleMd &&
            const DeepCollectionEquality().equals(other.acronym, acronym) &&
            const DeepCollectionEquality()
                .equals(other.canUserEdit, canUserEdit) &&
            const DeepCollectionEquality().equals(other.city, city) &&
            const DeepCollectionEquality()
                .equals(other.responsibleMdExternal, responsibleMdExternal) &&
            const DeepCollectionEquality().equals(other.linkCount, linkCount) &&
            const DeepCollectionEquality()
                .equals(other.organizationId, organizationId) &&
            const DeepCollectionEquality()
                .equals(other.organizationName, organizationName) &&
            const DeepCollectionEquality()
                .equals(other.organizationType, organizationType) &&
            const DeepCollectionEquality()
                .equals(other.naorganization, naorganization) &&
            const DeepCollectionEquality()
                .equals(other.organizationTypePretty, organizationTypePretty));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(acronym),
      const DeepCollectionEquality().hash(canUserEdit),
      const DeepCollectionEquality().hash(city),
      const DeepCollectionEquality().hash(responsibleMdExternal),
      const DeepCollectionEquality().hash(linkCount),
      const DeepCollectionEquality().hash(organizationId),
      const DeepCollectionEquality().hash(organizationName),
      const DeepCollectionEquality().hash(organizationType),
      const DeepCollectionEquality().hash(naorganization),
      const DeepCollectionEquality().hash(organizationTypePretty));

  @JsonKey(ignore: true)
  @override
  _$$_ResponsibleMdCopyWith<_$_ResponsibleMd> get copyWith =>
      __$$_ResponsibleMdCopyWithImpl<_$_ResponsibleMd>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_ResponsibleMdToJson(
      this,
    );
  }
}

abstract class _ResponsibleMd implements ResponsibleMd {
  factory _ResponsibleMd(
      {required final String? acronym,
      required final bool? canUserEdit,
      required final String? city,
      required final bool? responsibleMdExternal,
      required final int? linkCount,
      required final int? organizationId,
      required final String? organizationName,
      required final String? organizationType,
      required final bool? naorganization,
      required final String? organizationTypePretty}) = _$_ResponsibleMd;

  factory _ResponsibleMd.fromJson(Map<String, dynamic> json) =
      _$_ResponsibleMd.fromJson;

  @override
  String? get acronym;
  @override
  bool? get canUserEdit;
  @override
  String? get city;
  @override
  bool? get responsibleMdExternal;
  @override
  int? get linkCount;
  @override
  int? get organizationId;
  @override
  String? get organizationName;
  @override
  String? get organizationType;
  @override
  bool? get naorganization;
  @override
  String? get organizationTypePretty;
  @override
  @JsonKey(ignore: true)
  _$$_ResponsibleMdCopyWith<_$_ResponsibleMd> get copyWith =>
      throw _privateConstructorUsedError;
}

LeadOrganization _$LeadOrganizationFromJson(Map<String, dynamic> json) {
  return _LeadOrganization.fromJson(json);
}

/// @nodoc
mixin _$LeadOrganization {
  String? get acronym => throw _privateConstructorUsedError;
  bool? get canUserEdit => throw _privateConstructorUsedError;
  String? get city => throw _privateConstructorUsedError;
  Country? get country => throw _privateConstructorUsedError;
  int? get countryId => throw _privateConstructorUsedError;
  bool? get leadOrganizationExternal => throw _privateConstructorUsedError;
  int? get linkCount => throw _privateConstructorUsedError;
  int? get organizationId => throw _privateConstructorUsedError;
  String? get organizationName => throw _privateConstructorUsedError;
  String? get organizationType => throw _privateConstructorUsedError;
  States? get stateTerritory => throw _privateConstructorUsedError;
  int? get stateTerritoryId => throw _privateConstructorUsedError;
  bool? get naorganization => throw _privateConstructorUsedError;
  String? get organizationTypePretty => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $LeadOrganizationCopyWith<LeadOrganization> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $LeadOrganizationCopyWith<$Res> {
  factory $LeadOrganizationCopyWith(
          LeadOrganization value, $Res Function(LeadOrganization) then) =
      _$LeadOrganizationCopyWithImpl<$Res>;
  $Res call(
      {String? acronym,
      bool? canUserEdit,
      String? city,
      Country? country,
      int? countryId,
      bool? leadOrganizationExternal,
      int? linkCount,
      int? organizationId,
      String? organizationName,
      String? organizationType,
      States? stateTerritory,
      int? stateTerritoryId,
      bool? naorganization,
      String? organizationTypePretty});

  $CountryCopyWith<$Res>? get country;
  $StatesCopyWith<$Res>? get stateTerritory;
}

/// @nodoc
class _$LeadOrganizationCopyWithImpl<$Res>
    implements $LeadOrganizationCopyWith<$Res> {
  _$LeadOrganizationCopyWithImpl(this._value, this._then);

  final LeadOrganization _value;
  // ignore: unused_field
  final $Res Function(LeadOrganization) _then;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? canUserEdit = freezed,
    Object? city = freezed,
    Object? country = freezed,
    Object? countryId = freezed,
    Object? leadOrganizationExternal = freezed,
    Object? linkCount = freezed,
    Object? organizationId = freezed,
    Object? organizationName = freezed,
    Object? organizationType = freezed,
    Object? stateTerritory = freezed,
    Object? stateTerritoryId = freezed,
    Object? naorganization = freezed,
    Object? organizationTypePretty = freezed,
  }) {
    return _then(_value.copyWith(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      canUserEdit: canUserEdit == freezed
          ? _value.canUserEdit
          : canUserEdit // ignore: cast_nullable_to_non_nullable
              as bool?,
      city: city == freezed
          ? _value.city
          : city // ignore: cast_nullable_to_non_nullable
              as String?,
      country: country == freezed
          ? _value.country
          : country // ignore: cast_nullable_to_non_nullable
              as Country?,
      countryId: countryId == freezed
          ? _value.countryId
          : countryId // ignore: cast_nullable_to_non_nullable
              as int?,
      leadOrganizationExternal: leadOrganizationExternal == freezed
          ? _value.leadOrganizationExternal
          : leadOrganizationExternal // ignore: cast_nullable_to_non_nullable
              as bool?,
      linkCount: linkCount == freezed
          ? _value.linkCount
          : linkCount // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationId: organizationId == freezed
          ? _value.organizationId
          : organizationId // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationName: organizationName == freezed
          ? _value.organizationName
          : organizationName // ignore: cast_nullable_to_non_nullable
              as String?,
      organizationType: organizationType == freezed
          ? _value.organizationType
          : organizationType // ignore: cast_nullable_to_non_nullable
              as String?,
      stateTerritory: stateTerritory == freezed
          ? _value.stateTerritory
          : stateTerritory // ignore: cast_nullable_to_non_nullable
              as States?,
      stateTerritoryId: stateTerritoryId == freezed
          ? _value.stateTerritoryId
          : stateTerritoryId // ignore: cast_nullable_to_non_nullable
              as int?,
      naorganization: naorganization == freezed
          ? _value.naorganization
          : naorganization // ignore: cast_nullable_to_non_nullable
              as bool?,
      organizationTypePretty: organizationTypePretty == freezed
          ? _value.organizationTypePretty
          : organizationTypePretty // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }

  @override
  $CountryCopyWith<$Res>? get country {
    if (_value.country == null) {
      return null;
    }

    return $CountryCopyWith<$Res>(_value.country!, (value) {
      return _then(_value.copyWith(country: value));
    });
  }

  @override
  $StatesCopyWith<$Res>? get stateTerritory {
    if (_value.stateTerritory == null) {
      return null;
    }

    return $StatesCopyWith<$Res>(_value.stateTerritory!, (value) {
      return _then(_value.copyWith(stateTerritory: value));
    });
  }
}

/// @nodoc
abstract class _$$_LeadOrganizationCopyWith<$Res>
    implements $LeadOrganizationCopyWith<$Res> {
  factory _$$_LeadOrganizationCopyWith(
          _$_LeadOrganization value, $Res Function(_$_LeadOrganization) then) =
      __$$_LeadOrganizationCopyWithImpl<$Res>;
  @override
  $Res call(
      {String? acronym,
      bool? canUserEdit,
      String? city,
      Country? country,
      int? countryId,
      bool? leadOrganizationExternal,
      int? linkCount,
      int? organizationId,
      String? organizationName,
      String? organizationType,
      States? stateTerritory,
      int? stateTerritoryId,
      bool? naorganization,
      String? organizationTypePretty});

  @override
  $CountryCopyWith<$Res>? get country;
  @override
  $StatesCopyWith<$Res>? get stateTerritory;
}

/// @nodoc
class __$$_LeadOrganizationCopyWithImpl<$Res>
    extends _$LeadOrganizationCopyWithImpl<$Res>
    implements _$$_LeadOrganizationCopyWith<$Res> {
  __$$_LeadOrganizationCopyWithImpl(
      _$_LeadOrganization _value, $Res Function(_$_LeadOrganization) _then)
      : super(_value, (v) => _then(v as _$_LeadOrganization));

  @override
  _$_LeadOrganization get _value => super._value as _$_LeadOrganization;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? canUserEdit = freezed,
    Object? city = freezed,
    Object? country = freezed,
    Object? countryId = freezed,
    Object? leadOrganizationExternal = freezed,
    Object? linkCount = freezed,
    Object? organizationId = freezed,
    Object? organizationName = freezed,
    Object? organizationType = freezed,
    Object? stateTerritory = freezed,
    Object? stateTerritoryId = freezed,
    Object? naorganization = freezed,
    Object? organizationTypePretty = freezed,
  }) {
    return _then(_$_LeadOrganization(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      canUserEdit: canUserEdit == freezed
          ? _value.canUserEdit
          : canUserEdit // ignore: cast_nullable_to_non_nullable
              as bool?,
      city: city == freezed
          ? _value.city
          : city // ignore: cast_nullable_to_non_nullable
              as String?,
      country: country == freezed
          ? _value.country
          : country // ignore: cast_nullable_to_non_nullable
              as Country?,
      countryId: countryId == freezed
          ? _value.countryId
          : countryId // ignore: cast_nullable_to_non_nullable
              as int?,
      leadOrganizationExternal: leadOrganizationExternal == freezed
          ? _value.leadOrganizationExternal
          : leadOrganizationExternal // ignore: cast_nullable_to_non_nullable
              as bool?,
      linkCount: linkCount == freezed
          ? _value.linkCount
          : linkCount // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationId: organizationId == freezed
          ? _value.organizationId
          : organizationId // ignore: cast_nullable_to_non_nullable
              as int?,
      organizationName: organizationName == freezed
          ? _value.organizationName
          : organizationName // ignore: cast_nullable_to_non_nullable
              as String?,
      organizationType: organizationType == freezed
          ? _value.organizationType
          : organizationType // ignore: cast_nullable_to_non_nullable
              as String?,
      stateTerritory: stateTerritory == freezed
          ? _value.stateTerritory
          : stateTerritory // ignore: cast_nullable_to_non_nullable
              as States?,
      stateTerritoryId: stateTerritoryId == freezed
          ? _value.stateTerritoryId
          : stateTerritoryId // ignore: cast_nullable_to_non_nullable
              as int?,
      naorganization: naorganization == freezed
          ? _value.naorganization
          : naorganization // ignore: cast_nullable_to_non_nullable
              as bool?,
      organizationTypePretty: organizationTypePretty == freezed
          ? _value.organizationTypePretty
          : organizationTypePretty // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_LeadOrganization implements _LeadOrganization {
  _$_LeadOrganization(
      {required this.acronym,
      required this.canUserEdit,
      required this.city,
      required this.country,
      required this.countryId,
      required this.leadOrganizationExternal,
      required this.linkCount,
      required this.organizationId,
      required this.organizationName,
      required this.organizationType,
      required this.stateTerritory,
      required this.stateTerritoryId,
      required this.naorganization,
      required this.organizationTypePretty});

  factory _$_LeadOrganization.fromJson(Map<String, dynamic> json) =>
      _$$_LeadOrganizationFromJson(json);

  @override
  final String? acronym;
  @override
  final bool? canUserEdit;
  @override
  final String? city;
  @override
  final Country? country;
  @override
  final int? countryId;
  @override
  final bool? leadOrganizationExternal;
  @override
  final int? linkCount;
  @override
  final int? organizationId;
  @override
  final String? organizationName;
  @override
  final String? organizationType;
  @override
  final States? stateTerritory;
  @override
  final int? stateTerritoryId;
  @override
  final bool? naorganization;
  @override
  final String? organizationTypePretty;

  @override
  String toString() {
    return 'LeadOrganization(acronym: $acronym, canUserEdit: $canUserEdit, city: $city, country: $country, countryId: $countryId, leadOrganizationExternal: $leadOrganizationExternal, linkCount: $linkCount, organizationId: $organizationId, organizationName: $organizationName, organizationType: $organizationType, stateTerritory: $stateTerritory, stateTerritoryId: $stateTerritoryId, naorganization: $naorganization, organizationTypePretty: $organizationTypePretty)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_LeadOrganization &&
            const DeepCollectionEquality().equals(other.acronym, acronym) &&
            const DeepCollectionEquality()
                .equals(other.canUserEdit, canUserEdit) &&
            const DeepCollectionEquality().equals(other.city, city) &&
            const DeepCollectionEquality().equals(other.country, country) &&
            const DeepCollectionEquality().equals(other.countryId, countryId) &&
            const DeepCollectionEquality().equals(
                other.leadOrganizationExternal, leadOrganizationExternal) &&
            const DeepCollectionEquality().equals(other.linkCount, linkCount) &&
            const DeepCollectionEquality()
                .equals(other.organizationId, organizationId) &&
            const DeepCollectionEquality()
                .equals(other.organizationName, organizationName) &&
            const DeepCollectionEquality()
                .equals(other.organizationType, organizationType) &&
            const DeepCollectionEquality()
                .equals(other.stateTerritory, stateTerritory) &&
            const DeepCollectionEquality()
                .equals(other.stateTerritoryId, stateTerritoryId) &&
            const DeepCollectionEquality()
                .equals(other.naorganization, naorganization) &&
            const DeepCollectionEquality()
                .equals(other.organizationTypePretty, organizationTypePretty));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(acronym),
      const DeepCollectionEquality().hash(canUserEdit),
      const DeepCollectionEquality().hash(city),
      const DeepCollectionEquality().hash(country),
      const DeepCollectionEquality().hash(countryId),
      const DeepCollectionEquality().hash(leadOrganizationExternal),
      const DeepCollectionEquality().hash(linkCount),
      const DeepCollectionEquality().hash(organizationId),
      const DeepCollectionEquality().hash(organizationName),
      const DeepCollectionEquality().hash(organizationType),
      const DeepCollectionEquality().hash(stateTerritory),
      const DeepCollectionEquality().hash(stateTerritoryId),
      const DeepCollectionEquality().hash(naorganization),
      const DeepCollectionEquality().hash(organizationTypePretty));

  @JsonKey(ignore: true)
  @override
  _$$_LeadOrganizationCopyWith<_$_LeadOrganization> get copyWith =>
      __$$_LeadOrganizationCopyWithImpl<_$_LeadOrganization>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_LeadOrganizationToJson(
      this,
    );
  }
}

abstract class _LeadOrganization implements LeadOrganization {
  factory _LeadOrganization(
      {required final String? acronym,
      required final bool? canUserEdit,
      required final String? city,
      required final Country? country,
      required final int? countryId,
      required final bool? leadOrganizationExternal,
      required final int? linkCount,
      required final int? organizationId,
      required final String? organizationName,
      required final String? organizationType,
      required final States? stateTerritory,
      required final int? stateTerritoryId,
      required final bool? naorganization,
      required final String? organizationTypePretty}) = _$_LeadOrganization;

  factory _LeadOrganization.fromJson(Map<String, dynamic> json) =
      _$_LeadOrganization.fromJson;

  @override
  String? get acronym;
  @override
  bool? get canUserEdit;
  @override
  String? get city;
  @override
  Country? get country;
  @override
  int? get countryId;
  @override
  bool? get leadOrganizationExternal;
  @override
  int? get linkCount;
  @override
  int? get organizationId;
  @override
  String? get organizationName;
  @override
  String? get organizationType;
  @override
  States? get stateTerritory;
  @override
  int? get stateTerritoryId;
  @override
  bool? get naorganization;
  @override
  String? get organizationTypePretty;
  @override
  @JsonKey(ignore: true)
  _$$_LeadOrganizationCopyWith<_$_LeadOrganization> get copyWith =>
      throw _privateConstructorUsedError;
}

Program _$ProgramFromJson(Map<String, dynamic> json) {
  return _Program.fromJson(json);
}

/// @nodoc
mixin _$Program {
  String? get acronym => throw _privateConstructorUsedError;
  bool? get active => throw _privateConstructorUsedError;
  String? get description => throw _privateConstructorUsedError;
  ParentProgram? get parentProgram => throw _privateConstructorUsedError;
  int? get parentProgramId => throw _privateConstructorUsedError;
  int? get programId => throw _privateConstructorUsedError;
  ResponsibleMd? get responsibleMd => throw _privateConstructorUsedError;
  int? get responsibleMdId => throw _privateConstructorUsedError;
  String? get title => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $ProgramCopyWith<Program> get copyWith => throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $ProgramCopyWith<$Res> {
  factory $ProgramCopyWith(Program value, $Res Function(Program) then) =
      _$ProgramCopyWithImpl<$Res>;
  $Res call(
      {String? acronym,
      bool? active,
      String? description,
      ParentProgram? parentProgram,
      int? parentProgramId,
      int? programId,
      ResponsibleMd? responsibleMd,
      int? responsibleMdId,
      String? title});

  $ParentProgramCopyWith<$Res>? get parentProgram;
  $ResponsibleMdCopyWith<$Res>? get responsibleMd;
}

/// @nodoc
class _$ProgramCopyWithImpl<$Res> implements $ProgramCopyWith<$Res> {
  _$ProgramCopyWithImpl(this._value, this._then);

  final Program _value;
  // ignore: unused_field
  final $Res Function(Program) _then;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? active = freezed,
    Object? description = freezed,
    Object? parentProgram = freezed,
    Object? parentProgramId = freezed,
    Object? programId = freezed,
    Object? responsibleMd = freezed,
    Object? responsibleMdId = freezed,
    Object? title = freezed,
  }) {
    return _then(_value.copyWith(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      active: active == freezed
          ? _value.active
          : active // ignore: cast_nullable_to_non_nullable
              as bool?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      parentProgram: parentProgram == freezed
          ? _value.parentProgram
          : parentProgram // ignore: cast_nullable_to_non_nullable
              as ParentProgram?,
      parentProgramId: parentProgramId == freezed
          ? _value.parentProgramId
          : parentProgramId // ignore: cast_nullable_to_non_nullable
              as int?,
      programId: programId == freezed
          ? _value.programId
          : programId // ignore: cast_nullable_to_non_nullable
              as int?,
      responsibleMd: responsibleMd == freezed
          ? _value.responsibleMd
          : responsibleMd // ignore: cast_nullable_to_non_nullable
              as ResponsibleMd?,
      responsibleMdId: responsibleMdId == freezed
          ? _value.responsibleMdId
          : responsibleMdId // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }

  @override
  $ParentProgramCopyWith<$Res>? get parentProgram {
    if (_value.parentProgram == null) {
      return null;
    }

    return $ParentProgramCopyWith<$Res>(_value.parentProgram!, (value) {
      return _then(_value.copyWith(parentProgram: value));
    });
  }

  @override
  $ResponsibleMdCopyWith<$Res>? get responsibleMd {
    if (_value.responsibleMd == null) {
      return null;
    }

    return $ResponsibleMdCopyWith<$Res>(_value.responsibleMd!, (value) {
      return _then(_value.copyWith(responsibleMd: value));
    });
  }
}

/// @nodoc
abstract class _$$_ProgramCopyWith<$Res> implements $ProgramCopyWith<$Res> {
  factory _$$_ProgramCopyWith(
          _$_Program value, $Res Function(_$_Program) then) =
      __$$_ProgramCopyWithImpl<$Res>;
  @override
  $Res call(
      {String? acronym,
      bool? active,
      String? description,
      ParentProgram? parentProgram,
      int? parentProgramId,
      int? programId,
      ResponsibleMd? responsibleMd,
      int? responsibleMdId,
      String? title});

  @override
  $ParentProgramCopyWith<$Res>? get parentProgram;
  @override
  $ResponsibleMdCopyWith<$Res>? get responsibleMd;
}

/// @nodoc
class __$$_ProgramCopyWithImpl<$Res> extends _$ProgramCopyWithImpl<$Res>
    implements _$$_ProgramCopyWith<$Res> {
  __$$_ProgramCopyWithImpl(_$_Program _value, $Res Function(_$_Program) _then)
      : super(_value, (v) => _then(v as _$_Program));

  @override
  _$_Program get _value => super._value as _$_Program;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? active = freezed,
    Object? description = freezed,
    Object? parentProgram = freezed,
    Object? parentProgramId = freezed,
    Object? programId = freezed,
    Object? responsibleMd = freezed,
    Object? responsibleMdId = freezed,
    Object? title = freezed,
  }) {
    return _then(_$_Program(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      active: active == freezed
          ? _value.active
          : active // ignore: cast_nullable_to_non_nullable
              as bool?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      parentProgram: parentProgram == freezed
          ? _value.parentProgram
          : parentProgram // ignore: cast_nullable_to_non_nullable
              as ParentProgram?,
      parentProgramId: parentProgramId == freezed
          ? _value.parentProgramId
          : parentProgramId // ignore: cast_nullable_to_non_nullable
              as int?,
      programId: programId == freezed
          ? _value.programId
          : programId // ignore: cast_nullable_to_non_nullable
              as int?,
      responsibleMd: responsibleMd == freezed
          ? _value.responsibleMd
          : responsibleMd // ignore: cast_nullable_to_non_nullable
              as ResponsibleMd?,
      responsibleMdId: responsibleMdId == freezed
          ? _value.responsibleMdId
          : responsibleMdId // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_Program implements _Program {
  _$_Program(
      {required this.acronym,
      required this.active,
      required this.description,
      required this.parentProgram,
      required this.parentProgramId,
      required this.programId,
      required this.responsibleMd,
      required this.responsibleMdId,
      required this.title});

  factory _$_Program.fromJson(Map<String, dynamic> json) =>
      _$$_ProgramFromJson(json);

  @override
  final String? acronym;
  @override
  final bool? active;
  @override
  final String? description;
  @override
  final ParentProgram? parentProgram;
  @override
  final int? parentProgramId;
  @override
  final int? programId;
  @override
  final ResponsibleMd? responsibleMd;
  @override
  final int? responsibleMdId;
  @override
  final String? title;

  @override
  String toString() {
    return 'Program(acronym: $acronym, active: $active, description: $description, parentProgram: $parentProgram, parentProgramId: $parentProgramId, programId: $programId, responsibleMd: $responsibleMd, responsibleMdId: $responsibleMdId, title: $title)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_Program &&
            const DeepCollectionEquality().equals(other.acronym, acronym) &&
            const DeepCollectionEquality().equals(other.active, active) &&
            const DeepCollectionEquality()
                .equals(other.description, description) &&
            const DeepCollectionEquality()
                .equals(other.parentProgram, parentProgram) &&
            const DeepCollectionEquality()
                .equals(other.parentProgramId, parentProgramId) &&
            const DeepCollectionEquality().equals(other.programId, programId) &&
            const DeepCollectionEquality()
                .equals(other.responsibleMd, responsibleMd) &&
            const DeepCollectionEquality()
                .equals(other.responsibleMdId, responsibleMdId) &&
            const DeepCollectionEquality().equals(other.title, title));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(acronym),
      const DeepCollectionEquality().hash(active),
      const DeepCollectionEquality().hash(description),
      const DeepCollectionEquality().hash(parentProgram),
      const DeepCollectionEquality().hash(parentProgramId),
      const DeepCollectionEquality().hash(programId),
      const DeepCollectionEquality().hash(responsibleMd),
      const DeepCollectionEquality().hash(responsibleMdId),
      const DeepCollectionEquality().hash(title));

  @JsonKey(ignore: true)
  @override
  _$$_ProgramCopyWith<_$_Program> get copyWith =>
      __$$_ProgramCopyWithImpl<_$_Program>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_ProgramToJson(
      this,
    );
  }
}

abstract class _Program implements Program {
  factory _Program(
      {required final String? acronym,
      required final bool? active,
      required final String? description,
      required final ParentProgram? parentProgram,
      required final int? parentProgramId,
      required final int? programId,
      required final ResponsibleMd? responsibleMd,
      required final int? responsibleMdId,
      required final String? title}) = _$_Program;

  factory _Program.fromJson(Map<String, dynamic> json) = _$_Program.fromJson;

  @override
  String? get acronym;
  @override
  bool? get active;
  @override
  String? get description;
  @override
  ParentProgram? get parentProgram;
  @override
  int? get parentProgramId;
  @override
  int? get programId;
  @override
  ResponsibleMd? get responsibleMd;
  @override
  int? get responsibleMdId;
  @override
  String? get title;
  @override
  @JsonKey(ignore: true)
  _$$_ProgramCopyWith<_$_Program> get copyWith =>
      throw _privateConstructorUsedError;
}

ParentProgram _$ParentProgramFromJson(Map<String, dynamic> json) {
  return _ParentProgram.fromJson(json);
}

/// @nodoc
mixin _$ParentProgram {
  String? get acronym => throw _privateConstructorUsedError;
  bool? get active => throw _privateConstructorUsedError;
  int? get programId => throw _privateConstructorUsedError;
  ResponsibleMd? get responsibleMd => throw _privateConstructorUsedError;
  int? get responsibleMdId => throw _privateConstructorUsedError;
  String? get title => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $ParentProgramCopyWith<ParentProgram> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $ParentProgramCopyWith<$Res> {
  factory $ParentProgramCopyWith(
          ParentProgram value, $Res Function(ParentProgram) then) =
      _$ParentProgramCopyWithImpl<$Res>;
  $Res call(
      {String? acronym,
      bool? active,
      int? programId,
      ResponsibleMd? responsibleMd,
      int? responsibleMdId,
      String? title});

  $ResponsibleMdCopyWith<$Res>? get responsibleMd;
}

/// @nodoc
class _$ParentProgramCopyWithImpl<$Res>
    implements $ParentProgramCopyWith<$Res> {
  _$ParentProgramCopyWithImpl(this._value, this._then);

  final ParentProgram _value;
  // ignore: unused_field
  final $Res Function(ParentProgram) _then;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? active = freezed,
    Object? programId = freezed,
    Object? responsibleMd = freezed,
    Object? responsibleMdId = freezed,
    Object? title = freezed,
  }) {
    return _then(_value.copyWith(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      active: active == freezed
          ? _value.active
          : active // ignore: cast_nullable_to_non_nullable
              as bool?,
      programId: programId == freezed
          ? _value.programId
          : programId // ignore: cast_nullable_to_non_nullable
              as int?,
      responsibleMd: responsibleMd == freezed
          ? _value.responsibleMd
          : responsibleMd // ignore: cast_nullable_to_non_nullable
              as ResponsibleMd?,
      responsibleMdId: responsibleMdId == freezed
          ? _value.responsibleMdId
          : responsibleMdId // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }

  @override
  $ResponsibleMdCopyWith<$Res>? get responsibleMd {
    if (_value.responsibleMd == null) {
      return null;
    }

    return $ResponsibleMdCopyWith<$Res>(_value.responsibleMd!, (value) {
      return _then(_value.copyWith(responsibleMd: value));
    });
  }
}

/// @nodoc
abstract class _$$_ParentProgramCopyWith<$Res>
    implements $ParentProgramCopyWith<$Res> {
  factory _$$_ParentProgramCopyWith(
          _$_ParentProgram value, $Res Function(_$_ParentProgram) then) =
      __$$_ParentProgramCopyWithImpl<$Res>;
  @override
  $Res call(
      {String? acronym,
      bool? active,
      int? programId,
      ResponsibleMd? responsibleMd,
      int? responsibleMdId,
      String? title});

  @override
  $ResponsibleMdCopyWith<$Res>? get responsibleMd;
}

/// @nodoc
class __$$_ParentProgramCopyWithImpl<$Res>
    extends _$ParentProgramCopyWithImpl<$Res>
    implements _$$_ParentProgramCopyWith<$Res> {
  __$$_ParentProgramCopyWithImpl(
      _$_ParentProgram _value, $Res Function(_$_ParentProgram) _then)
      : super(_value, (v) => _then(v as _$_ParentProgram));

  @override
  _$_ParentProgram get _value => super._value as _$_ParentProgram;

  @override
  $Res call({
    Object? acronym = freezed,
    Object? active = freezed,
    Object? programId = freezed,
    Object? responsibleMd = freezed,
    Object? responsibleMdId = freezed,
    Object? title = freezed,
  }) {
    return _then(_$_ParentProgram(
      acronym: acronym == freezed
          ? _value.acronym
          : acronym // ignore: cast_nullable_to_non_nullable
              as String?,
      active: active == freezed
          ? _value.active
          : active // ignore: cast_nullable_to_non_nullable
              as bool?,
      programId: programId == freezed
          ? _value.programId
          : programId // ignore: cast_nullable_to_non_nullable
              as int?,
      responsibleMd: responsibleMd == freezed
          ? _value.responsibleMd
          : responsibleMd // ignore: cast_nullable_to_non_nullable
              as ResponsibleMd?,
      responsibleMdId: responsibleMdId == freezed
          ? _value.responsibleMdId
          : responsibleMdId // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_ParentProgram implements _ParentProgram {
  _$_ParentProgram(
      {required this.acronym,
      required this.active,
      required this.programId,
      required this.responsibleMd,
      required this.responsibleMdId,
      required this.title});

  factory _$_ParentProgram.fromJson(Map<String, dynamic> json) =>
      _$$_ParentProgramFromJson(json);

  @override
  final String? acronym;
  @override
  final bool? active;
  @override
  final int? programId;
  @override
  final ResponsibleMd? responsibleMd;
  @override
  final int? responsibleMdId;
  @override
  final String? title;

  @override
  String toString() {
    return 'ParentProgram(acronym: $acronym, active: $active, programId: $programId, responsibleMd: $responsibleMd, responsibleMdId: $responsibleMdId, title: $title)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_ParentProgram &&
            const DeepCollectionEquality().equals(other.acronym, acronym) &&
            const DeepCollectionEquality().equals(other.active, active) &&
            const DeepCollectionEquality().equals(other.programId, programId) &&
            const DeepCollectionEquality()
                .equals(other.responsibleMd, responsibleMd) &&
            const DeepCollectionEquality()
                .equals(other.responsibleMdId, responsibleMdId) &&
            const DeepCollectionEquality().equals(other.title, title));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(acronym),
      const DeepCollectionEquality().hash(active),
      const DeepCollectionEquality().hash(programId),
      const DeepCollectionEquality().hash(responsibleMd),
      const DeepCollectionEquality().hash(responsibleMdId),
      const DeepCollectionEquality().hash(title));

  @JsonKey(ignore: true)
  @override
  _$$_ParentProgramCopyWith<_$_ParentProgram> get copyWith =>
      __$$_ParentProgramCopyWithImpl<_$_ParentProgram>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_ParentProgramToJson(
      this,
    );
  }
}

abstract class _ParentProgram implements ParentProgram {
  factory _ParentProgram(
      {required final String? acronym,
      required final bool? active,
      required final int? programId,
      required final ResponsibleMd? responsibleMd,
      required final int? responsibleMdId,
      required final String? title}) = _$_ParentProgram;

  factory _ParentProgram.fromJson(Map<String, dynamic> json) =
      _$_ParentProgram.fromJson;

  @override
  String? get acronym;
  @override
  bool? get active;
  @override
  int? get programId;
  @override
  ResponsibleMd? get responsibleMd;
  @override
  int? get responsibleMdId;
  @override
  String? get title;
  @override
  @JsonKey(ignore: true)
  _$$_ParentProgramCopyWith<_$_ParentProgram> get copyWith =>
      throw _privateConstructorUsedError;
}

PrimaryImage _$PrimaryImageFromJson(Map<String, dynamic> json) {
  return _PrimaryImage.fromJson(json);
}

/// @nodoc
mixin _$PrimaryImage {
  PrimaryImageFile? get file => throw _privateConstructorUsedError;
  int? get id => throw _privateConstructorUsedError;
  String? get description => throw _privateConstructorUsedError;
  int? get projectId => throw _privateConstructorUsedError;
  String? get publishedDateString => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $PrimaryImageCopyWith<PrimaryImage> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $PrimaryImageCopyWith<$Res> {
  factory $PrimaryImageCopyWith(
          PrimaryImage value, $Res Function(PrimaryImage) then) =
      _$PrimaryImageCopyWithImpl<$Res>;
  $Res call(
      {PrimaryImageFile? file,
      int? id,
      String? description,
      int? projectId,
      String? publishedDateString});

  $PrimaryImageFileCopyWith<$Res>? get file;
}

/// @nodoc
class _$PrimaryImageCopyWithImpl<$Res> implements $PrimaryImageCopyWith<$Res> {
  _$PrimaryImageCopyWithImpl(this._value, this._then);

  final PrimaryImage _value;
  // ignore: unused_field
  final $Res Function(PrimaryImage) _then;

  @override
  $Res call({
    Object? file = freezed,
    Object? id = freezed,
    Object? description = freezed,
    Object? projectId = freezed,
    Object? publishedDateString = freezed,
  }) {
    return _then(_value.copyWith(
      file: file == freezed
          ? _value.file
          : file // ignore: cast_nullable_to_non_nullable
              as PrimaryImageFile?,
      id: id == freezed
          ? _value.id
          : id // ignore: cast_nullable_to_non_nullable
              as int?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      projectId: projectId == freezed
          ? _value.projectId
          : projectId // ignore: cast_nullable_to_non_nullable
              as int?,
      publishedDateString: publishedDateString == freezed
          ? _value.publishedDateString
          : publishedDateString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }

  @override
  $PrimaryImageFileCopyWith<$Res>? get file {
    if (_value.file == null) {
      return null;
    }

    return $PrimaryImageFileCopyWith<$Res>(_value.file!, (value) {
      return _then(_value.copyWith(file: value));
    });
  }
}

/// @nodoc
abstract class _$$_PrimaryImageCopyWith<$Res>
    implements $PrimaryImageCopyWith<$Res> {
  factory _$$_PrimaryImageCopyWith(
          _$_PrimaryImage value, $Res Function(_$_PrimaryImage) then) =
      __$$_PrimaryImageCopyWithImpl<$Res>;
  @override
  $Res call(
      {PrimaryImageFile? file,
      int? id,
      String? description,
      int? projectId,
      String? publishedDateString});

  @override
  $PrimaryImageFileCopyWith<$Res>? get file;
}

/// @nodoc
class __$$_PrimaryImageCopyWithImpl<$Res>
    extends _$PrimaryImageCopyWithImpl<$Res>
    implements _$$_PrimaryImageCopyWith<$Res> {
  __$$_PrimaryImageCopyWithImpl(
      _$_PrimaryImage _value, $Res Function(_$_PrimaryImage) _then)
      : super(_value, (v) => _then(v as _$_PrimaryImage));

  @override
  _$_PrimaryImage get _value => super._value as _$_PrimaryImage;

  @override
  $Res call({
    Object? file = freezed,
    Object? id = freezed,
    Object? description = freezed,
    Object? projectId = freezed,
    Object? publishedDateString = freezed,
  }) {
    return _then(_$_PrimaryImage(
      file: file == freezed
          ? _value.file
          : file // ignore: cast_nullable_to_non_nullable
              as PrimaryImageFile?,
      id: id == freezed
          ? _value.id
          : id // ignore: cast_nullable_to_non_nullable
              as int?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      projectId: projectId == freezed
          ? _value.projectId
          : projectId // ignore: cast_nullable_to_non_nullable
              as int?,
      publishedDateString: publishedDateString == freezed
          ? _value.publishedDateString
          : publishedDateString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_PrimaryImage implements _PrimaryImage {
  _$_PrimaryImage(
      {required this.file,
      required this.id,
      required this.description,
      required this.projectId,
      required this.publishedDateString});

  factory _$_PrimaryImage.fromJson(Map<String, dynamic> json) =>
      _$$_PrimaryImageFromJson(json);

  @override
  final PrimaryImageFile? file;
  @override
  final int? id;
  @override
  final String? description;
  @override
  final int? projectId;
  @override
  final String? publishedDateString;

  @override
  String toString() {
    return 'PrimaryImage(file: $file, id: $id, description: $description, projectId: $projectId, publishedDateString: $publishedDateString)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_PrimaryImage &&
            const DeepCollectionEquality().equals(other.file, file) &&
            const DeepCollectionEquality().equals(other.id, id) &&
            const DeepCollectionEquality()
                .equals(other.description, description) &&
            const DeepCollectionEquality().equals(other.projectId, projectId) &&
            const DeepCollectionEquality()
                .equals(other.publishedDateString, publishedDateString));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(file),
      const DeepCollectionEquality().hash(id),
      const DeepCollectionEquality().hash(description),
      const DeepCollectionEquality().hash(projectId),
      const DeepCollectionEquality().hash(publishedDateString));

  @JsonKey(ignore: true)
  @override
  _$$_PrimaryImageCopyWith<_$_PrimaryImage> get copyWith =>
      __$$_PrimaryImageCopyWithImpl<_$_PrimaryImage>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_PrimaryImageToJson(
      this,
    );
  }
}

abstract class _PrimaryImage implements PrimaryImage {
  factory _PrimaryImage(
      {required final PrimaryImageFile? file,
      required final int? id,
      required final String? description,
      required final int? projectId,
      required final String? publishedDateString}) = _$_PrimaryImage;

  factory _PrimaryImage.fromJson(Map<String, dynamic> json) =
      _$_PrimaryImage.fromJson;

  @override
  PrimaryImageFile? get file;
  @override
  int? get id;
  @override
  String? get description;
  @override
  int? get projectId;
  @override
  String? get publishedDateString;
  @override
  @JsonKey(ignore: true)
  _$$_PrimaryImageCopyWith<_$_PrimaryImage> get copyWith =>
      throw _privateConstructorUsedError;
}

PrimaryImageFile _$PrimaryImageFileFromJson(Map<String, dynamic> json) {
  return _PrimaryImageFile.fromJson(json);
}

/// @nodoc
mixin _$PrimaryImageFile {
  String? get fileExtension => throw _privateConstructorUsedError;
  int? get fileId => throw _privateConstructorUsedError;
  String? get fileSizeString => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $PrimaryImageFileCopyWith<PrimaryImageFile> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $PrimaryImageFileCopyWith<$Res> {
  factory $PrimaryImageFileCopyWith(
          PrimaryImageFile value, $Res Function(PrimaryImageFile) then) =
      _$PrimaryImageFileCopyWithImpl<$Res>;
  $Res call({String? fileExtension, int? fileId, String? fileSizeString});
}

/// @nodoc
class _$PrimaryImageFileCopyWithImpl<$Res>
    implements $PrimaryImageFileCopyWith<$Res> {
  _$PrimaryImageFileCopyWithImpl(this._value, this._then);

  final PrimaryImageFile _value;
  // ignore: unused_field
  final $Res Function(PrimaryImageFile) _then;

  @override
  $Res call({
    Object? fileExtension = freezed,
    Object? fileId = freezed,
    Object? fileSizeString = freezed,
  }) {
    return _then(_value.copyWith(
      fileExtension: fileExtension == freezed
          ? _value.fileExtension
          : fileExtension // ignore: cast_nullable_to_non_nullable
              as String?,
      fileId: fileId == freezed
          ? _value.fileId
          : fileId // ignore: cast_nullable_to_non_nullable
              as int?,
      fileSizeString: fileSizeString == freezed
          ? _value.fileSizeString
          : fileSizeString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
abstract class _$$_PrimaryImageFileCopyWith<$Res>
    implements $PrimaryImageFileCopyWith<$Res> {
  factory _$$_PrimaryImageFileCopyWith(
          _$_PrimaryImageFile value, $Res Function(_$_PrimaryImageFile) then) =
      __$$_PrimaryImageFileCopyWithImpl<$Res>;
  @override
  $Res call({String? fileExtension, int? fileId, String? fileSizeString});
}

/// @nodoc
class __$$_PrimaryImageFileCopyWithImpl<$Res>
    extends _$PrimaryImageFileCopyWithImpl<$Res>
    implements _$$_PrimaryImageFileCopyWith<$Res> {
  __$$_PrimaryImageFileCopyWithImpl(
      _$_PrimaryImageFile _value, $Res Function(_$_PrimaryImageFile) _then)
      : super(_value, (v) => _then(v as _$_PrimaryImageFile));

  @override
  _$_PrimaryImageFile get _value => super._value as _$_PrimaryImageFile;

  @override
  $Res call({
    Object? fileExtension = freezed,
    Object? fileId = freezed,
    Object? fileSizeString = freezed,
  }) {
    return _then(_$_PrimaryImageFile(
      fileExtension: fileExtension == freezed
          ? _value.fileExtension
          : fileExtension // ignore: cast_nullable_to_non_nullable
              as String?,
      fileId: fileId == freezed
          ? _value.fileId
          : fileId // ignore: cast_nullable_to_non_nullable
              as int?,
      fileSizeString: fileSizeString == freezed
          ? _value.fileSizeString
          : fileSizeString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_PrimaryImageFile implements _PrimaryImageFile {
  _$_PrimaryImageFile(
      {required this.fileExtension,
      required this.fileId,
      required this.fileSizeString});

  factory _$_PrimaryImageFile.fromJson(Map<String, dynamic> json) =>
      _$$_PrimaryImageFileFromJson(json);

  @override
  final String? fileExtension;
  @override
  final int? fileId;
  @override
  final String? fileSizeString;

  @override
  String toString() {
    return 'PrimaryImageFile(fileExtension: $fileExtension, fileId: $fileId, fileSizeString: $fileSizeString)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_PrimaryImageFile &&
            const DeepCollectionEquality()
                .equals(other.fileExtension, fileExtension) &&
            const DeepCollectionEquality().equals(other.fileId, fileId) &&
            const DeepCollectionEquality()
                .equals(other.fileSizeString, fileSizeString));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(fileExtension),
      const DeepCollectionEquality().hash(fileId),
      const DeepCollectionEquality().hash(fileSizeString));

  @JsonKey(ignore: true)
  @override
  _$$_PrimaryImageFileCopyWith<_$_PrimaryImageFile> get copyWith =>
      __$$_PrimaryImageFileCopyWithImpl<_$_PrimaryImageFile>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_PrimaryImageFileToJson(
      this,
    );
  }
}

abstract class _PrimaryImageFile implements PrimaryImageFile {
  factory _PrimaryImageFile(
      {required final String? fileExtension,
      required final int? fileId,
      required final String? fileSizeString}) = _$_PrimaryImageFile;

  factory _PrimaryImageFile.fromJson(Map<String, dynamic> json) =
      _$_PrimaryImageFile.fromJson;

  @override
  String? get fileExtension;
  @override
  int? get fileId;
  @override
  String? get fileSizeString;
  @override
  @JsonKey(ignore: true)
  _$$_PrimaryImageFileCopyWith<_$_PrimaryImageFile> get copyWith =>
      throw _privateConstructorUsedError;
}

LibraryItem _$LibraryItemFromJson(Map<String, dynamic> json) {
  return _LibraryItem.fromJson(json);
}

/// @nodoc
mixin _$LibraryItem {
  List<LibraryItemFile>? get files => throw _privateConstructorUsedError;
  int? get id => throw _privateConstructorUsedError;
  String? get title => throw _privateConstructorUsedError;
  int? get libraryItemTypeId => throw _privateConstructorUsedError;
  int? get projectId => throw _privateConstructorUsedError;
  String? get publishedDateString => throw _privateConstructorUsedError;
  String? get url => throw _privateConstructorUsedError;
  SupportedMission? get contentType => throw _privateConstructorUsedError;
  String? get caption => throw _privateConstructorUsedError;
  LibraryItemFile? get file => throw _privateConstructorUsedError;
  String? get description => throw _privateConstructorUsedError;
  bool? get primary => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $LibraryItemCopyWith<LibraryItem> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $LibraryItemCopyWith<$Res> {
  factory $LibraryItemCopyWith(
          LibraryItem value, $Res Function(LibraryItem) then) =
      _$LibraryItemCopyWithImpl<$Res>;
  $Res call(
      {List<LibraryItemFile>? files,
      int? id,
      String? title,
      int? libraryItemTypeId,
      int? projectId,
      String? publishedDateString,
      String? url,
      SupportedMission? contentType,
      String? caption,
      LibraryItemFile? file,
      String? description,
      bool? primary});

  $SupportedMissionCopyWith<$Res>? get contentType;
  $LibraryItemFileCopyWith<$Res>? get file;
}

/// @nodoc
class _$LibraryItemCopyWithImpl<$Res> implements $LibraryItemCopyWith<$Res> {
  _$LibraryItemCopyWithImpl(this._value, this._then);

  final LibraryItem _value;
  // ignore: unused_field
  final $Res Function(LibraryItem) _then;

  @override
  $Res call({
    Object? files = freezed,
    Object? id = freezed,
    Object? title = freezed,
    Object? libraryItemTypeId = freezed,
    Object? projectId = freezed,
    Object? publishedDateString = freezed,
    Object? url = freezed,
    Object? contentType = freezed,
    Object? caption = freezed,
    Object? file = freezed,
    Object? description = freezed,
    Object? primary = freezed,
  }) {
    return _then(_value.copyWith(
      files: files == freezed
          ? _value.files
          : files // ignore: cast_nullable_to_non_nullable
              as List<LibraryItemFile>?,
      id: id == freezed
          ? _value.id
          : id // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
      libraryItemTypeId: libraryItemTypeId == freezed
          ? _value.libraryItemTypeId
          : libraryItemTypeId // ignore: cast_nullable_to_non_nullable
              as int?,
      projectId: projectId == freezed
          ? _value.projectId
          : projectId // ignore: cast_nullable_to_non_nullable
              as int?,
      publishedDateString: publishedDateString == freezed
          ? _value.publishedDateString
          : publishedDateString // ignore: cast_nullable_to_non_nullable
              as String?,
      url: url == freezed
          ? _value.url
          : url // ignore: cast_nullable_to_non_nullable
              as String?,
      contentType: contentType == freezed
          ? _value.contentType
          : contentType // ignore: cast_nullable_to_non_nullable
              as SupportedMission?,
      caption: caption == freezed
          ? _value.caption
          : caption // ignore: cast_nullable_to_non_nullable
              as String?,
      file: file == freezed
          ? _value.file
          : file // ignore: cast_nullable_to_non_nullable
              as LibraryItemFile?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      primary: primary == freezed
          ? _value.primary
          : primary // ignore: cast_nullable_to_non_nullable
              as bool?,
    ));
  }

  @override
  $SupportedMissionCopyWith<$Res>? get contentType {
    if (_value.contentType == null) {
      return null;
    }

    return $SupportedMissionCopyWith<$Res>(_value.contentType!, (value) {
      return _then(_value.copyWith(contentType: value));
    });
  }

  @override
  $LibraryItemFileCopyWith<$Res>? get file {
    if (_value.file == null) {
      return null;
    }

    return $LibraryItemFileCopyWith<$Res>(_value.file!, (value) {
      return _then(_value.copyWith(file: value));
    });
  }
}

/// @nodoc
abstract class _$$_LibraryItemCopyWith<$Res>
    implements $LibraryItemCopyWith<$Res> {
  factory _$$_LibraryItemCopyWith(
          _$_LibraryItem value, $Res Function(_$_LibraryItem) then) =
      __$$_LibraryItemCopyWithImpl<$Res>;
  @override
  $Res call(
      {List<LibraryItemFile>? files,
      int? id,
      String? title,
      int? libraryItemTypeId,
      int? projectId,
      String? publishedDateString,
      String? url,
      SupportedMission? contentType,
      String? caption,
      LibraryItemFile? file,
      String? description,
      bool? primary});

  @override
  $SupportedMissionCopyWith<$Res>? get contentType;
  @override
  $LibraryItemFileCopyWith<$Res>? get file;
}

/// @nodoc
class __$$_LibraryItemCopyWithImpl<$Res> extends _$LibraryItemCopyWithImpl<$Res>
    implements _$$_LibraryItemCopyWith<$Res> {
  __$$_LibraryItemCopyWithImpl(
      _$_LibraryItem _value, $Res Function(_$_LibraryItem) _then)
      : super(_value, (v) => _then(v as _$_LibraryItem));

  @override
  _$_LibraryItem get _value => super._value as _$_LibraryItem;

  @override
  $Res call({
    Object? files = freezed,
    Object? id = freezed,
    Object? title = freezed,
    Object? libraryItemTypeId = freezed,
    Object? projectId = freezed,
    Object? publishedDateString = freezed,
    Object? url = freezed,
    Object? contentType = freezed,
    Object? caption = freezed,
    Object? file = freezed,
    Object? description = freezed,
    Object? primary = freezed,
  }) {
    return _then(_$_LibraryItem(
      files: files == freezed
          ? _value._files
          : files // ignore: cast_nullable_to_non_nullable
              as List<LibraryItemFile>?,
      id: id == freezed
          ? _value.id
          : id // ignore: cast_nullable_to_non_nullable
              as int?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
      libraryItemTypeId: libraryItemTypeId == freezed
          ? _value.libraryItemTypeId
          : libraryItemTypeId // ignore: cast_nullable_to_non_nullable
              as int?,
      projectId: projectId == freezed
          ? _value.projectId
          : projectId // ignore: cast_nullable_to_non_nullable
              as int?,
      publishedDateString: publishedDateString == freezed
          ? _value.publishedDateString
          : publishedDateString // ignore: cast_nullable_to_non_nullable
              as String?,
      url: url == freezed
          ? _value.url
          : url // ignore: cast_nullable_to_non_nullable
              as String?,
      contentType: contentType == freezed
          ? _value.contentType
          : contentType // ignore: cast_nullable_to_non_nullable
              as SupportedMission?,
      caption: caption == freezed
          ? _value.caption
          : caption // ignore: cast_nullable_to_non_nullable
              as String?,
      file: file == freezed
          ? _value.file
          : file // ignore: cast_nullable_to_non_nullable
              as LibraryItemFile?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      primary: primary == freezed
          ? _value.primary
          : primary // ignore: cast_nullable_to_non_nullable
              as bool?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_LibraryItem implements _LibraryItem {
  _$_LibraryItem(
      {required final List<LibraryItemFile>? files,
      required this.id,
      required this.title,
      required this.libraryItemTypeId,
      required this.projectId,
      required this.publishedDateString,
      required this.url,
      required this.contentType,
      required this.caption,
      required this.file,
      required this.description,
      required this.primary})
      : _files = files;

  factory _$_LibraryItem.fromJson(Map<String, dynamic> json) =>
      _$$_LibraryItemFromJson(json);

  final List<LibraryItemFile>? _files;
  @override
  List<LibraryItemFile>? get files {
    final value = _files;
    if (value == null) return null;
    // ignore: implicit_dynamic_type
    return EqualUnmodifiableListView(value);
  }

  @override
  final int? id;
  @override
  final String? title;
  @override
  final int? libraryItemTypeId;
  @override
  final int? projectId;
  @override
  final String? publishedDateString;
  @override
  final String? url;
  @override
  final SupportedMission? contentType;
  @override
  final String? caption;
  @override
  final LibraryItemFile? file;
  @override
  final String? description;
  @override
  final bool? primary;

  @override
  String toString() {
    return 'LibraryItem(files: $files, id: $id, title: $title, libraryItemTypeId: $libraryItemTypeId, projectId: $projectId, publishedDateString: $publishedDateString, url: $url, contentType: $contentType, caption: $caption, file: $file, description: $description, primary: $primary)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_LibraryItem &&
            const DeepCollectionEquality().equals(other._files, _files) &&
            const DeepCollectionEquality().equals(other.id, id) &&
            const DeepCollectionEquality().equals(other.title, title) &&
            const DeepCollectionEquality()
                .equals(other.libraryItemTypeId, libraryItemTypeId) &&
            const DeepCollectionEquality().equals(other.projectId, projectId) &&
            const DeepCollectionEquality()
                .equals(other.publishedDateString, publishedDateString) &&
            const DeepCollectionEquality().equals(other.url, url) &&
            const DeepCollectionEquality()
                .equals(other.contentType, contentType) &&
            const DeepCollectionEquality().equals(other.caption, caption) &&
            const DeepCollectionEquality().equals(other.file, file) &&
            const DeepCollectionEquality()
                .equals(other.description, description) &&
            const DeepCollectionEquality().equals(other.primary, primary));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(_files),
      const DeepCollectionEquality().hash(id),
      const DeepCollectionEquality().hash(title),
      const DeepCollectionEquality().hash(libraryItemTypeId),
      const DeepCollectionEquality().hash(projectId),
      const DeepCollectionEquality().hash(publishedDateString),
      const DeepCollectionEquality().hash(url),
      const DeepCollectionEquality().hash(contentType),
      const DeepCollectionEquality().hash(caption),
      const DeepCollectionEquality().hash(file),
      const DeepCollectionEquality().hash(description),
      const DeepCollectionEquality().hash(primary));

  @JsonKey(ignore: true)
  @override
  _$$_LibraryItemCopyWith<_$_LibraryItem> get copyWith =>
      __$$_LibraryItemCopyWithImpl<_$_LibraryItem>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_LibraryItemToJson(
      this,
    );
  }
}

abstract class _LibraryItem implements LibraryItem {
  factory _LibraryItem(
      {required final List<LibraryItemFile>? files,
      required final int? id,
      required final String? title,
      required final int? libraryItemTypeId,
      required final int? projectId,
      required final String? publishedDateString,
      required final String? url,
      required final SupportedMission? contentType,
      required final String? caption,
      required final LibraryItemFile? file,
      required final String? description,
      required final bool? primary}) = _$_LibraryItem;

  factory _LibraryItem.fromJson(Map<String, dynamic> json) =
      _$_LibraryItem.fromJson;

  @override
  List<LibraryItemFile>? get files;
  @override
  int? get id;
  @override
  String? get title;
  @override
  int? get libraryItemTypeId;
  @override
  int? get projectId;
  @override
  String? get publishedDateString;
  @override
  String? get url;
  @override
  SupportedMission? get contentType;
  @override
  String? get caption;
  @override
  LibraryItemFile? get file;
  @override
  String? get description;
  @override
  bool? get primary;
  @override
  @JsonKey(ignore: true)
  _$$_LibraryItemCopyWith<_$_LibraryItem> get copyWith =>
      throw _privateConstructorUsedError;
}

LibraryItemFile _$LibraryItemFileFromJson(Map<String, dynamic> json) {
  return _LibraryItemFile.fromJson(json);
}

/// @nodoc
mixin _$LibraryItemFile {
  String? get fileExtension => throw _privateConstructorUsedError;
  int? get fileId => throw _privateConstructorUsedError;
  String? get fileName => throw _privateConstructorUsedError;
  int? get fileSize => throw _privateConstructorUsedError;
  int? get objectId => throw _privateConstructorUsedError;
  SupportedMission? get objectType => throw _privateConstructorUsedError;
  int? get objectTypeId => throw _privateConstructorUsedError;
  String? get fileSizeString => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $LibraryItemFileCopyWith<LibraryItemFile> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $LibraryItemFileCopyWith<$Res> {
  factory $LibraryItemFileCopyWith(
          LibraryItemFile value, $Res Function(LibraryItemFile) then) =
      _$LibraryItemFileCopyWithImpl<$Res>;
  $Res call(
      {String? fileExtension,
      int? fileId,
      String? fileName,
      int? fileSize,
      int? objectId,
      SupportedMission? objectType,
      int? objectTypeId,
      String? fileSizeString});

  $SupportedMissionCopyWith<$Res>? get objectType;
}

/// @nodoc
class _$LibraryItemFileCopyWithImpl<$Res>
    implements $LibraryItemFileCopyWith<$Res> {
  _$LibraryItemFileCopyWithImpl(this._value, this._then);

  final LibraryItemFile _value;
  // ignore: unused_field
  final $Res Function(LibraryItemFile) _then;

  @override
  $Res call({
    Object? fileExtension = freezed,
    Object? fileId = freezed,
    Object? fileName = freezed,
    Object? fileSize = freezed,
    Object? objectId = freezed,
    Object? objectType = freezed,
    Object? objectTypeId = freezed,
    Object? fileSizeString = freezed,
  }) {
    return _then(_value.copyWith(
      fileExtension: fileExtension == freezed
          ? _value.fileExtension
          : fileExtension // ignore: cast_nullable_to_non_nullable
              as String?,
      fileId: fileId == freezed
          ? _value.fileId
          : fileId // ignore: cast_nullable_to_non_nullable
              as int?,
      fileName: fileName == freezed
          ? _value.fileName
          : fileName // ignore: cast_nullable_to_non_nullable
              as String?,
      fileSize: fileSize == freezed
          ? _value.fileSize
          : fileSize // ignore: cast_nullable_to_non_nullable
              as int?,
      objectId: objectId == freezed
          ? _value.objectId
          : objectId // ignore: cast_nullable_to_non_nullable
              as int?,
      objectType: objectType == freezed
          ? _value.objectType
          : objectType // ignore: cast_nullable_to_non_nullable
              as SupportedMission?,
      objectTypeId: objectTypeId == freezed
          ? _value.objectTypeId
          : objectTypeId // ignore: cast_nullable_to_non_nullable
              as int?,
      fileSizeString: fileSizeString == freezed
          ? _value.fileSizeString
          : fileSizeString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }

  @override
  $SupportedMissionCopyWith<$Res>? get objectType {
    if (_value.objectType == null) {
      return null;
    }

    return $SupportedMissionCopyWith<$Res>(_value.objectType!, (value) {
      return _then(_value.copyWith(objectType: value));
    });
  }
}

/// @nodoc
abstract class _$$_LibraryItemFileCopyWith<$Res>
    implements $LibraryItemFileCopyWith<$Res> {
  factory _$$_LibraryItemFileCopyWith(
          _$_LibraryItemFile value, $Res Function(_$_LibraryItemFile) then) =
      __$$_LibraryItemFileCopyWithImpl<$Res>;
  @override
  $Res call(
      {String? fileExtension,
      int? fileId,
      String? fileName,
      int? fileSize,
      int? objectId,
      SupportedMission? objectType,
      int? objectTypeId,
      String? fileSizeString});

  @override
  $SupportedMissionCopyWith<$Res>? get objectType;
}

/// @nodoc
class __$$_LibraryItemFileCopyWithImpl<$Res>
    extends _$LibraryItemFileCopyWithImpl<$Res>
    implements _$$_LibraryItemFileCopyWith<$Res> {
  __$$_LibraryItemFileCopyWithImpl(
      _$_LibraryItemFile _value, $Res Function(_$_LibraryItemFile) _then)
      : super(_value, (v) => _then(v as _$_LibraryItemFile));

  @override
  _$_LibraryItemFile get _value => super._value as _$_LibraryItemFile;

  @override
  $Res call({
    Object? fileExtension = freezed,
    Object? fileId = freezed,
    Object? fileName = freezed,
    Object? fileSize = freezed,
    Object? objectId = freezed,
    Object? objectType = freezed,
    Object? objectTypeId = freezed,
    Object? fileSizeString = freezed,
  }) {
    return _then(_$_LibraryItemFile(
      fileExtension: fileExtension == freezed
          ? _value.fileExtension
          : fileExtension // ignore: cast_nullable_to_non_nullable
              as String?,
      fileId: fileId == freezed
          ? _value.fileId
          : fileId // ignore: cast_nullable_to_non_nullable
              as int?,
      fileName: fileName == freezed
          ? _value.fileName
          : fileName // ignore: cast_nullable_to_non_nullable
              as String?,
      fileSize: fileSize == freezed
          ? _value.fileSize
          : fileSize // ignore: cast_nullable_to_non_nullable
              as int?,
      objectId: objectId == freezed
          ? _value.objectId
          : objectId // ignore: cast_nullable_to_non_nullable
              as int?,
      objectType: objectType == freezed
          ? _value.objectType
          : objectType // ignore: cast_nullable_to_non_nullable
              as SupportedMission?,
      objectTypeId: objectTypeId == freezed
          ? _value.objectTypeId
          : objectTypeId // ignore: cast_nullable_to_non_nullable
              as int?,
      fileSizeString: fileSizeString == freezed
          ? _value.fileSizeString
          : fileSizeString // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_LibraryItemFile implements _LibraryItemFile {
  _$_LibraryItemFile(
      {required this.fileExtension,
      required this.fileId,
      required this.fileName,
      required this.fileSize,
      required this.objectId,
      required this.objectType,
      required this.objectTypeId,
      required this.fileSizeString});

  factory _$_LibraryItemFile.fromJson(Map<String, dynamic> json) =>
      _$$_LibraryItemFileFromJson(json);

  @override
  final String? fileExtension;
  @override
  final int? fileId;
  @override
  final String? fileName;
  @override
  final int? fileSize;
  @override
  final int? objectId;
  @override
  final SupportedMission? objectType;
  @override
  final int? objectTypeId;
  @override
  final String? fileSizeString;

  @override
  String toString() {
    return 'LibraryItemFile(fileExtension: $fileExtension, fileId: $fileId, fileName: $fileName, fileSize: $fileSize, objectId: $objectId, objectType: $objectType, objectTypeId: $objectTypeId, fileSizeString: $fileSizeString)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_LibraryItemFile &&
            const DeepCollectionEquality()
                .equals(other.fileExtension, fileExtension) &&
            const DeepCollectionEquality().equals(other.fileId, fileId) &&
            const DeepCollectionEquality().equals(other.fileName, fileName) &&
            const DeepCollectionEquality().equals(other.fileSize, fileSize) &&
            const DeepCollectionEquality().equals(other.objectId, objectId) &&
            const DeepCollectionEquality()
                .equals(other.objectType, objectType) &&
            const DeepCollectionEquality()
                .equals(other.objectTypeId, objectTypeId) &&
            const DeepCollectionEquality()
                .equals(other.fileSizeString, fileSizeString));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(fileExtension),
      const DeepCollectionEquality().hash(fileId),
      const DeepCollectionEquality().hash(fileName),
      const DeepCollectionEquality().hash(fileSize),
      const DeepCollectionEquality().hash(objectId),
      const DeepCollectionEquality().hash(objectType),
      const DeepCollectionEquality().hash(objectTypeId),
      const DeepCollectionEquality().hash(fileSizeString));

  @JsonKey(ignore: true)
  @override
  _$$_LibraryItemFileCopyWith<_$_LibraryItemFile> get copyWith =>
      __$$_LibraryItemFileCopyWithImpl<_$_LibraryItemFile>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_LibraryItemFileToJson(
      this,
    );
  }
}

abstract class _LibraryItemFile implements LibraryItemFile {
  factory _LibraryItemFile(
      {required final String? fileExtension,
      required final int? fileId,
      required final String? fileName,
      required final int? fileSize,
      required final int? objectId,
      required final SupportedMission? objectType,
      required final int? objectTypeId,
      required final String? fileSizeString}) = _$_LibraryItemFile;

  factory _LibraryItemFile.fromJson(Map<String, dynamic> json) =
      _$_LibraryItemFile.fromJson;

  @override
  String? get fileExtension;
  @override
  int? get fileId;
  @override
  String? get fileName;
  @override
  int? get fileSize;
  @override
  int? get objectId;
  @override
  SupportedMission? get objectType;
  @override
  int? get objectTypeId;
  @override
  String? get fileSizeString;
  @override
  @JsonKey(ignore: true)
  _$$_LibraryItemFileCopyWith<_$_LibraryItemFile> get copyWith =>
      throw _privateConstructorUsedError;
}

CoInvestigator _$CoInvestigatorFromJson(Map<String, dynamic> json) {
  return _CoInvestigator.fromJson(json);
}

/// @nodoc
mixin _$CoInvestigator {
  int? get contactId => throw _privateConstructorUsedError;
  int? get displayOrder => throw _privateConstructorUsedError;
  String? get firstName => throw _privateConstructorUsedError;
  String? get lastName => throw _privateConstructorUsedError;
  String? get fullName => throw _privateConstructorUsedError;
  String? get fullNameInverted => throw _privateConstructorUsedError;
  String? get middleInitial => throw _privateConstructorUsedError;
  String? get primaryEmail => throw _privateConstructorUsedError;
  bool? get publicEmail => throw _privateConstructorUsedError;
  bool? get nacontact => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $CoInvestigatorCopyWith<CoInvestigator> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $CoInvestigatorCopyWith<$Res> {
  factory $CoInvestigatorCopyWith(
          CoInvestigator value, $Res Function(CoInvestigator) then) =
      _$CoInvestigatorCopyWithImpl<$Res>;
  $Res call(
      {int? contactId,
      int? displayOrder,
      String? firstName,
      String? lastName,
      String? fullName,
      String? fullNameInverted,
      String? middleInitial,
      String? primaryEmail,
      bool? publicEmail,
      bool? nacontact});
}

/// @nodoc
class _$CoInvestigatorCopyWithImpl<$Res>
    implements $CoInvestigatorCopyWith<$Res> {
  _$CoInvestigatorCopyWithImpl(this._value, this._then);

  final CoInvestigator _value;
  // ignore: unused_field
  final $Res Function(CoInvestigator) _then;

  @override
  $Res call({
    Object? contactId = freezed,
    Object? displayOrder = freezed,
    Object? firstName = freezed,
    Object? lastName = freezed,
    Object? fullName = freezed,
    Object? fullNameInverted = freezed,
    Object? middleInitial = freezed,
    Object? primaryEmail = freezed,
    Object? publicEmail = freezed,
    Object? nacontact = freezed,
  }) {
    return _then(_value.copyWith(
      contactId: contactId == freezed
          ? _value.contactId
          : contactId // ignore: cast_nullable_to_non_nullable
              as int?,
      displayOrder: displayOrder == freezed
          ? _value.displayOrder
          : displayOrder // ignore: cast_nullable_to_non_nullable
              as int?,
      firstName: firstName == freezed
          ? _value.firstName
          : firstName // ignore: cast_nullable_to_non_nullable
              as String?,
      lastName: lastName == freezed
          ? _value.lastName
          : lastName // ignore: cast_nullable_to_non_nullable
              as String?,
      fullName: fullName == freezed
          ? _value.fullName
          : fullName // ignore: cast_nullable_to_non_nullable
              as String?,
      fullNameInverted: fullNameInverted == freezed
          ? _value.fullNameInverted
          : fullNameInverted // ignore: cast_nullable_to_non_nullable
              as String?,
      middleInitial: middleInitial == freezed
          ? _value.middleInitial
          : middleInitial // ignore: cast_nullable_to_non_nullable
              as String?,
      primaryEmail: primaryEmail == freezed
          ? _value.primaryEmail
          : primaryEmail // ignore: cast_nullable_to_non_nullable
              as String?,
      publicEmail: publicEmail == freezed
          ? _value.publicEmail
          : publicEmail // ignore: cast_nullable_to_non_nullable
              as bool?,
      nacontact: nacontact == freezed
          ? _value.nacontact
          : nacontact // ignore: cast_nullable_to_non_nullable
              as bool?,
    ));
  }
}

/// @nodoc
abstract class _$$_CoInvestigatorCopyWith<$Res>
    implements $CoInvestigatorCopyWith<$Res> {
  factory _$$_CoInvestigatorCopyWith(
          _$_CoInvestigator value, $Res Function(_$_CoInvestigator) then) =
      __$$_CoInvestigatorCopyWithImpl<$Res>;
  @override
  $Res call(
      {int? contactId,
      int? displayOrder,
      String? firstName,
      String? lastName,
      String? fullName,
      String? fullNameInverted,
      String? middleInitial,
      String? primaryEmail,
      bool? publicEmail,
      bool? nacontact});
}

/// @nodoc
class __$$_CoInvestigatorCopyWithImpl<$Res>
    extends _$CoInvestigatorCopyWithImpl<$Res>
    implements _$$_CoInvestigatorCopyWith<$Res> {
  __$$_CoInvestigatorCopyWithImpl(
      _$_CoInvestigator _value, $Res Function(_$_CoInvestigator) _then)
      : super(_value, (v) => _then(v as _$_CoInvestigator));

  @override
  _$_CoInvestigator get _value => super._value as _$_CoInvestigator;

  @override
  $Res call({
    Object? contactId = freezed,
    Object? displayOrder = freezed,
    Object? firstName = freezed,
    Object? lastName = freezed,
    Object? fullName = freezed,
    Object? fullNameInverted = freezed,
    Object? middleInitial = freezed,
    Object? primaryEmail = freezed,
    Object? publicEmail = freezed,
    Object? nacontact = freezed,
  }) {
    return _then(_$_CoInvestigator(
      contactId: contactId == freezed
          ? _value.contactId
          : contactId // ignore: cast_nullable_to_non_nullable
              as int?,
      displayOrder: displayOrder == freezed
          ? _value.displayOrder
          : displayOrder // ignore: cast_nullable_to_non_nullable
              as int?,
      firstName: firstName == freezed
          ? _value.firstName
          : firstName // ignore: cast_nullable_to_non_nullable
              as String?,
      lastName: lastName == freezed
          ? _value.lastName
          : lastName // ignore: cast_nullable_to_non_nullable
              as String?,
      fullName: fullName == freezed
          ? _value.fullName
          : fullName // ignore: cast_nullable_to_non_nullable
              as String?,
      fullNameInverted: fullNameInverted == freezed
          ? _value.fullNameInverted
          : fullNameInverted // ignore: cast_nullable_to_non_nullable
              as String?,
      middleInitial: middleInitial == freezed
          ? _value.middleInitial
          : middleInitial // ignore: cast_nullable_to_non_nullable
              as String?,
      primaryEmail: primaryEmail == freezed
          ? _value.primaryEmail
          : primaryEmail // ignore: cast_nullable_to_non_nullable
              as String?,
      publicEmail: publicEmail == freezed
          ? _value.publicEmail
          : publicEmail // ignore: cast_nullable_to_non_nullable
              as bool?,
      nacontact: nacontact == freezed
          ? _value.nacontact
          : nacontact // ignore: cast_nullable_to_non_nullable
              as bool?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_CoInvestigator implements _CoInvestigator {
  _$_CoInvestigator(
      {required this.contactId,
      required this.displayOrder,
      required this.firstName,
      required this.lastName,
      required this.fullName,
      required this.fullNameInverted,
      required this.middleInitial,
      required this.primaryEmail,
      required this.publicEmail,
      required this.nacontact});

  factory _$_CoInvestigator.fromJson(Map<String, dynamic> json) =>
      _$$_CoInvestigatorFromJson(json);

  @override
  final int? contactId;
  @override
  final int? displayOrder;
  @override
  final String? firstName;
  @override
  final String? lastName;
  @override
  final String? fullName;
  @override
  final String? fullNameInverted;
  @override
  final String? middleInitial;
  @override
  final String? primaryEmail;
  @override
  final bool? publicEmail;
  @override
  final bool? nacontact;

  @override
  String toString() {
    return 'CoInvestigator(contactId: $contactId, displayOrder: $displayOrder, firstName: $firstName, lastName: $lastName, fullName: $fullName, fullNameInverted: $fullNameInverted, middleInitial: $middleInitial, primaryEmail: $primaryEmail, publicEmail: $publicEmail, nacontact: $nacontact)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_CoInvestigator &&
            const DeepCollectionEquality().equals(other.contactId, contactId) &&
            const DeepCollectionEquality()
                .equals(other.displayOrder, displayOrder) &&
            const DeepCollectionEquality().equals(other.firstName, firstName) &&
            const DeepCollectionEquality().equals(other.lastName, lastName) &&
            const DeepCollectionEquality().equals(other.fullName, fullName) &&
            const DeepCollectionEquality()
                .equals(other.fullNameInverted, fullNameInverted) &&
            const DeepCollectionEquality()
                .equals(other.middleInitial, middleInitial) &&
            const DeepCollectionEquality()
                .equals(other.primaryEmail, primaryEmail) &&
            const DeepCollectionEquality()
                .equals(other.publicEmail, publicEmail) &&
            const DeepCollectionEquality().equals(other.nacontact, nacontact));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(contactId),
      const DeepCollectionEquality().hash(displayOrder),
      const DeepCollectionEquality().hash(firstName),
      const DeepCollectionEquality().hash(lastName),
      const DeepCollectionEquality().hash(fullName),
      const DeepCollectionEquality().hash(fullNameInverted),
      const DeepCollectionEquality().hash(middleInitial),
      const DeepCollectionEquality().hash(primaryEmail),
      const DeepCollectionEquality().hash(publicEmail),
      const DeepCollectionEquality().hash(nacontact));

  @JsonKey(ignore: true)
  @override
  _$$_CoInvestigatorCopyWith<_$_CoInvestigator> get copyWith =>
      __$$_CoInvestigatorCopyWithImpl<_$_CoInvestigator>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_CoInvestigatorToJson(
      this,
    );
  }
}

abstract class _CoInvestigator implements CoInvestigator {
  factory _CoInvestigator(
      {required final int? contactId,
      required final int? displayOrder,
      required final String? firstName,
      required final String? lastName,
      required final String? fullName,
      required final String? fullNameInverted,
      required final String? middleInitial,
      required final String? primaryEmail,
      required final bool? publicEmail,
      required final bool? nacontact}) = _$_CoInvestigator;

  factory _CoInvestigator.fromJson(Map<String, dynamic> json) =
      _$_CoInvestigator.fromJson;

  @override
  int? get contactId;
  @override
  int? get displayOrder;
  @override
  String? get firstName;
  @override
  String? get lastName;
  @override
  String? get fullName;
  @override
  String? get fullNameInverted;
  @override
  String? get middleInitial;
  @override
  String? get primaryEmail;
  @override
  bool? get publicEmail;
  @override
  bool? get nacontact;
  @override
  @JsonKey(ignore: true)
  _$$_CoInvestigatorCopyWith<_$_CoInvestigator> get copyWith =>
      throw _privateConstructorUsedError;
}

TaxonomyNode _$TaxonomyNodeFromJson(Map<String, dynamic> json) {
  return _TaxonomyNode.fromJson(json);
}

/// @nodoc
mixin _$TaxonomyNode {
  int? get taxonomyNodeId => throw _privateConstructorUsedError;
  int? get taxonomyRootId => throw _privateConstructorUsedError;
  int? get parentNodeId => throw _privateConstructorUsedError;
  int? get level => throw _privateConstructorUsedError;
  String? get code => throw _privateConstructorUsedError;
  String? get title => throw _privateConstructorUsedError;
  String? get definition => throw _privateConstructorUsedError;
  String? get exampleTechnologies => throw _privateConstructorUsedError;
  bool? get hasChildren => throw _privateConstructorUsedError;
  bool? get hasInteriorContent => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $TaxonomyNodeCopyWith<TaxonomyNode> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $TaxonomyNodeCopyWith<$Res> {
  factory $TaxonomyNodeCopyWith(
          TaxonomyNode value, $Res Function(TaxonomyNode) then) =
      _$TaxonomyNodeCopyWithImpl<$Res>;
  $Res call(
      {int? taxonomyNodeId,
      int? taxonomyRootId,
      int? parentNodeId,
      int? level,
      String? code,
      String? title,
      String? definition,
      String? exampleTechnologies,
      bool? hasChildren,
      bool? hasInteriorContent});
}

/// @nodoc
class _$TaxonomyNodeCopyWithImpl<$Res> implements $TaxonomyNodeCopyWith<$Res> {
  _$TaxonomyNodeCopyWithImpl(this._value, this._then);

  final TaxonomyNode _value;
  // ignore: unused_field
  final $Res Function(TaxonomyNode) _then;

  @override
  $Res call({
    Object? taxonomyNodeId = freezed,
    Object? taxonomyRootId = freezed,
    Object? parentNodeId = freezed,
    Object? level = freezed,
    Object? code = freezed,
    Object? title = freezed,
    Object? definition = freezed,
    Object? exampleTechnologies = freezed,
    Object? hasChildren = freezed,
    Object? hasInteriorContent = freezed,
  }) {
    return _then(_value.copyWith(
      taxonomyNodeId: taxonomyNodeId == freezed
          ? _value.taxonomyNodeId
          : taxonomyNodeId // ignore: cast_nullable_to_non_nullable
              as int?,
      taxonomyRootId: taxonomyRootId == freezed
          ? _value.taxonomyRootId
          : taxonomyRootId // ignore: cast_nullable_to_non_nullable
              as int?,
      parentNodeId: parentNodeId == freezed
          ? _value.parentNodeId
          : parentNodeId // ignore: cast_nullable_to_non_nullable
              as int?,
      level: level == freezed
          ? _value.level
          : level // ignore: cast_nullable_to_non_nullable
              as int?,
      code: code == freezed
          ? _value.code
          : code // ignore: cast_nullable_to_non_nullable
              as String?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
      definition: definition == freezed
          ? _value.definition
          : definition // ignore: cast_nullable_to_non_nullable
              as String?,
      exampleTechnologies: exampleTechnologies == freezed
          ? _value.exampleTechnologies
          : exampleTechnologies // ignore: cast_nullable_to_non_nullable
              as String?,
      hasChildren: hasChildren == freezed
          ? _value.hasChildren
          : hasChildren // ignore: cast_nullable_to_non_nullable
              as bool?,
      hasInteriorContent: hasInteriorContent == freezed
          ? _value.hasInteriorContent
          : hasInteriorContent // ignore: cast_nullable_to_non_nullable
              as bool?,
    ));
  }
}

/// @nodoc
abstract class _$$_TaxonomyNodeCopyWith<$Res>
    implements $TaxonomyNodeCopyWith<$Res> {
  factory _$$_TaxonomyNodeCopyWith(
          _$_TaxonomyNode value, $Res Function(_$_TaxonomyNode) then) =
      __$$_TaxonomyNodeCopyWithImpl<$Res>;
  @override
  $Res call(
      {int? taxonomyNodeId,
      int? taxonomyRootId,
      int? parentNodeId,
      int? level,
      String? code,
      String? title,
      String? definition,
      String? exampleTechnologies,
      bool? hasChildren,
      bool? hasInteriorContent});
}

/// @nodoc
class __$$_TaxonomyNodeCopyWithImpl<$Res>
    extends _$TaxonomyNodeCopyWithImpl<$Res>
    implements _$$_TaxonomyNodeCopyWith<$Res> {
  __$$_TaxonomyNodeCopyWithImpl(
      _$_TaxonomyNode _value, $Res Function(_$_TaxonomyNode) _then)
      : super(_value, (v) => _then(v as _$_TaxonomyNode));

  @override
  _$_TaxonomyNode get _value => super._value as _$_TaxonomyNode;

  @override
  $Res call({
    Object? taxonomyNodeId = freezed,
    Object? taxonomyRootId = freezed,
    Object? parentNodeId = freezed,
    Object? level = freezed,
    Object? code = freezed,
    Object? title = freezed,
    Object? definition = freezed,
    Object? exampleTechnologies = freezed,
    Object? hasChildren = freezed,
    Object? hasInteriorContent = freezed,
  }) {
    return _then(_$_TaxonomyNode(
      taxonomyNodeId: taxonomyNodeId == freezed
          ? _value.taxonomyNodeId
          : taxonomyNodeId // ignore: cast_nullable_to_non_nullable
              as int?,
      taxonomyRootId: taxonomyRootId == freezed
          ? _value.taxonomyRootId
          : taxonomyRootId // ignore: cast_nullable_to_non_nullable
              as int?,
      parentNodeId: parentNodeId == freezed
          ? _value.parentNodeId
          : parentNodeId // ignore: cast_nullable_to_non_nullable
              as int?,
      level: level == freezed
          ? _value.level
          : level // ignore: cast_nullable_to_non_nullable
              as int?,
      code: code == freezed
          ? _value.code
          : code // ignore: cast_nullable_to_non_nullable
              as String?,
      title: title == freezed
          ? _value.title
          : title // ignore: cast_nullable_to_non_nullable
              as String?,
      definition: definition == freezed
          ? _value.definition
          : definition // ignore: cast_nullable_to_non_nullable
              as String?,
      exampleTechnologies: exampleTechnologies == freezed
          ? _value.exampleTechnologies
          : exampleTechnologies // ignore: cast_nullable_to_non_nullable
              as String?,
      hasChildren: hasChildren == freezed
          ? _value.hasChildren
          : hasChildren // ignore: cast_nullable_to_non_nullable
              as bool?,
      hasInteriorContent: hasInteriorContent == freezed
          ? _value.hasInteriorContent
          : hasInteriorContent // ignore: cast_nullable_to_non_nullable
              as bool?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_TaxonomyNode implements _TaxonomyNode {
  _$_TaxonomyNode(
      {required this.taxonomyNodeId,
      required this.taxonomyRootId,
      required this.parentNodeId,
      required this.level,
      required this.code,
      required this.title,
      required this.definition,
      required this.exampleTechnologies,
      required this.hasChildren,
      required this.hasInteriorContent});

  factory _$_TaxonomyNode.fromJson(Map<String, dynamic> json) =>
      _$$_TaxonomyNodeFromJson(json);

  @override
  final int? taxonomyNodeId;
  @override
  final int? taxonomyRootId;
  @override
  final int? parentNodeId;
  @override
  final int? level;
  @override
  final String? code;
  @override
  final String? title;
  @override
  final String? definition;
  @override
  final String? exampleTechnologies;
  @override
  final bool? hasChildren;
  @override
  final bool? hasInteriorContent;

  @override
  String toString() {
    return 'TaxonomyNode(taxonomyNodeId: $taxonomyNodeId, taxonomyRootId: $taxonomyRootId, parentNodeId: $parentNodeId, level: $level, code: $code, title: $title, definition: $definition, exampleTechnologies: $exampleTechnologies, hasChildren: $hasChildren, hasInteriorContent: $hasInteriorContent)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_TaxonomyNode &&
            const DeepCollectionEquality()
                .equals(other.taxonomyNodeId, taxonomyNodeId) &&
            const DeepCollectionEquality()
                .equals(other.taxonomyRootId, taxonomyRootId) &&
            const DeepCollectionEquality()
                .equals(other.parentNodeId, parentNodeId) &&
            const DeepCollectionEquality().equals(other.level, level) &&
            const DeepCollectionEquality().equals(other.code, code) &&
            const DeepCollectionEquality().equals(other.title, title) &&
            const DeepCollectionEquality()
                .equals(other.definition, definition) &&
            const DeepCollectionEquality()
                .equals(other.exampleTechnologies, exampleTechnologies) &&
            const DeepCollectionEquality()
                .equals(other.hasChildren, hasChildren) &&
            const DeepCollectionEquality()
                .equals(other.hasInteriorContent, hasInteriorContent));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(taxonomyNodeId),
      const DeepCollectionEquality().hash(taxonomyRootId),
      const DeepCollectionEquality().hash(parentNodeId),
      const DeepCollectionEquality().hash(level),
      const DeepCollectionEquality().hash(code),
      const DeepCollectionEquality().hash(title),
      const DeepCollectionEquality().hash(definition),
      const DeepCollectionEquality().hash(exampleTechnologies),
      const DeepCollectionEquality().hash(hasChildren),
      const DeepCollectionEquality().hash(hasInteriorContent));

  @JsonKey(ignore: true)
  @override
  _$$_TaxonomyNodeCopyWith<_$_TaxonomyNode> get copyWith =>
      __$$_TaxonomyNodeCopyWithImpl<_$_TaxonomyNode>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_TaxonomyNodeToJson(
      this,
    );
  }
}

abstract class _TaxonomyNode implements TaxonomyNode {
  factory _TaxonomyNode(
      {required final int? taxonomyNodeId,
      required final int? taxonomyRootId,
      required final int? parentNodeId,
      required final int? level,
      required final String? code,
      required final String? title,
      required final String? definition,
      required final String? exampleTechnologies,
      required final bool? hasChildren,
      required final bool? hasInteriorContent}) = _$_TaxonomyNode;

  factory _TaxonomyNode.fromJson(Map<String, dynamic> json) =
      _$_TaxonomyNode.fromJson;

  @override
  int? get taxonomyNodeId;
  @override
  int? get taxonomyRootId;
  @override
  int? get parentNodeId;
  @override
  int? get level;
  @override
  String? get code;
  @override
  String? get title;
  @override
  String? get definition;
  @override
  String? get exampleTechnologies;
  @override
  bool? get hasChildren;
  @override
  bool? get hasInteriorContent;
  @override
  @JsonKey(ignore: true)
  _$$_TaxonomyNodeCopyWith<_$_TaxonomyNode> get copyWith =>
      throw _privateConstructorUsedError;
}

SupportedMission _$SupportedMissionFromJson(Map<String, dynamic> json) {
  return _SupportedMission.fromJson(json);
}

/// @nodoc
mixin _$SupportedMission {
  int? get lkuCodeId => throw _privateConstructorUsedError;
  String? get code => throw _privateConstructorUsedError;
  String? get description => throw _privateConstructorUsedError;
  int? get lkuCodeTypeId => throw _privateConstructorUsedError;
  LkuCodeType? get lkuCodeType => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $SupportedMissionCopyWith<SupportedMission> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $SupportedMissionCopyWith<$Res> {
  factory $SupportedMissionCopyWith(
          SupportedMission value, $Res Function(SupportedMission) then) =
      _$SupportedMissionCopyWithImpl<$Res>;
  $Res call(
      {int? lkuCodeId,
      String? code,
      String? description,
      int? lkuCodeTypeId,
      LkuCodeType? lkuCodeType});

  $LkuCodeTypeCopyWith<$Res>? get lkuCodeType;
}

/// @nodoc
class _$SupportedMissionCopyWithImpl<$Res>
    implements $SupportedMissionCopyWith<$Res> {
  _$SupportedMissionCopyWithImpl(this._value, this._then);

  final SupportedMission _value;
  // ignore: unused_field
  final $Res Function(SupportedMission) _then;

  @override
  $Res call({
    Object? lkuCodeId = freezed,
    Object? code = freezed,
    Object? description = freezed,
    Object? lkuCodeTypeId = freezed,
    Object? lkuCodeType = freezed,
  }) {
    return _then(_value.copyWith(
      lkuCodeId: lkuCodeId == freezed
          ? _value.lkuCodeId
          : lkuCodeId // ignore: cast_nullable_to_non_nullable
              as int?,
      code: code == freezed
          ? _value.code
          : code // ignore: cast_nullable_to_non_nullable
              as String?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      lkuCodeTypeId: lkuCodeTypeId == freezed
          ? _value.lkuCodeTypeId
          : lkuCodeTypeId // ignore: cast_nullable_to_non_nullable
              as int?,
      lkuCodeType: lkuCodeType == freezed
          ? _value.lkuCodeType
          : lkuCodeType // ignore: cast_nullable_to_non_nullable
              as LkuCodeType?,
    ));
  }

  @override
  $LkuCodeTypeCopyWith<$Res>? get lkuCodeType {
    if (_value.lkuCodeType == null) {
      return null;
    }

    return $LkuCodeTypeCopyWith<$Res>(_value.lkuCodeType!, (value) {
      return _then(_value.copyWith(lkuCodeType: value));
    });
  }
}

/// @nodoc
abstract class _$$_SupportedMissionCopyWith<$Res>
    implements $SupportedMissionCopyWith<$Res> {
  factory _$$_SupportedMissionCopyWith(
          _$_SupportedMission value, $Res Function(_$_SupportedMission) then) =
      __$$_SupportedMissionCopyWithImpl<$Res>;
  @override
  $Res call(
      {int? lkuCodeId,
      String? code,
      String? description,
      int? lkuCodeTypeId,
      LkuCodeType? lkuCodeType});

  @override
  $LkuCodeTypeCopyWith<$Res>? get lkuCodeType;
}

/// @nodoc
class __$$_SupportedMissionCopyWithImpl<$Res>
    extends _$SupportedMissionCopyWithImpl<$Res>
    implements _$$_SupportedMissionCopyWith<$Res> {
  __$$_SupportedMissionCopyWithImpl(
      _$_SupportedMission _value, $Res Function(_$_SupportedMission) _then)
      : super(_value, (v) => _then(v as _$_SupportedMission));

  @override
  _$_SupportedMission get _value => super._value as _$_SupportedMission;

  @override
  $Res call({
    Object? lkuCodeId = freezed,
    Object? code = freezed,
    Object? description = freezed,
    Object? lkuCodeTypeId = freezed,
    Object? lkuCodeType = freezed,
  }) {
    return _then(_$_SupportedMission(
      lkuCodeId: lkuCodeId == freezed
          ? _value.lkuCodeId
          : lkuCodeId // ignore: cast_nullable_to_non_nullable
              as int?,
      code: code == freezed
          ? _value.code
          : code // ignore: cast_nullable_to_non_nullable
              as String?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
      lkuCodeTypeId: lkuCodeTypeId == freezed
          ? _value.lkuCodeTypeId
          : lkuCodeTypeId // ignore: cast_nullable_to_non_nullable
              as int?,
      lkuCodeType: lkuCodeType == freezed
          ? _value.lkuCodeType
          : lkuCodeType // ignore: cast_nullable_to_non_nullable
              as LkuCodeType?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_SupportedMission implements _SupportedMission {
  _$_SupportedMission(
      {required this.lkuCodeId,
      required this.code,
      required this.description,
      required this.lkuCodeTypeId,
      required this.lkuCodeType});

  factory _$_SupportedMission.fromJson(Map<String, dynamic> json) =>
      _$$_SupportedMissionFromJson(json);

  @override
  final int? lkuCodeId;
  @override
  final String? code;
  @override
  final String? description;
  @override
  final int? lkuCodeTypeId;
  @override
  final LkuCodeType? lkuCodeType;

  @override
  String toString() {
    return 'SupportedMission(lkuCodeId: $lkuCodeId, code: $code, description: $description, lkuCodeTypeId: $lkuCodeTypeId, lkuCodeType: $lkuCodeType)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_SupportedMission &&
            const DeepCollectionEquality().equals(other.lkuCodeId, lkuCodeId) &&
            const DeepCollectionEquality().equals(other.code, code) &&
            const DeepCollectionEquality()
                .equals(other.description, description) &&
            const DeepCollectionEquality()
                .equals(other.lkuCodeTypeId, lkuCodeTypeId) &&
            const DeepCollectionEquality()
                .equals(other.lkuCodeType, lkuCodeType));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(lkuCodeId),
      const DeepCollectionEquality().hash(code),
      const DeepCollectionEquality().hash(description),
      const DeepCollectionEquality().hash(lkuCodeTypeId),
      const DeepCollectionEquality().hash(lkuCodeType));

  @JsonKey(ignore: true)
  @override
  _$$_SupportedMissionCopyWith<_$_SupportedMission> get copyWith =>
      __$$_SupportedMissionCopyWithImpl<_$_SupportedMission>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_SupportedMissionToJson(
      this,
    );
  }
}

abstract class _SupportedMission implements SupportedMission {
  factory _SupportedMission(
      {required final int? lkuCodeId,
      required final String? code,
      required final String? description,
      required final int? lkuCodeTypeId,
      required final LkuCodeType? lkuCodeType}) = _$_SupportedMission;

  factory _SupportedMission.fromJson(Map<String, dynamic> json) =
      _$_SupportedMission.fromJson;

  @override
  int? get lkuCodeId;
  @override
  String? get code;
  @override
  String? get description;
  @override
  int? get lkuCodeTypeId;
  @override
  LkuCodeType? get lkuCodeType;
  @override
  @JsonKey(ignore: true)
  _$$_SupportedMissionCopyWith<_$_SupportedMission> get copyWith =>
      throw _privateConstructorUsedError;
}

LkuCodeType _$LkuCodeTypeFromJson(Map<String, dynamic> json) {
  return _LkuCodeType.fromJson(json);
}

/// @nodoc
mixin _$LkuCodeType {
  String? get codeType => throw _privateConstructorUsedError;
  String? get description => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $LkuCodeTypeCopyWith<LkuCodeType> get copyWith =>
      throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $LkuCodeTypeCopyWith<$Res> {
  factory $LkuCodeTypeCopyWith(
          LkuCodeType value, $Res Function(LkuCodeType) then) =
      _$LkuCodeTypeCopyWithImpl<$Res>;
  $Res call({String? codeType, String? description});
}

/// @nodoc
class _$LkuCodeTypeCopyWithImpl<$Res> implements $LkuCodeTypeCopyWith<$Res> {
  _$LkuCodeTypeCopyWithImpl(this._value, this._then);

  final LkuCodeType _value;
  // ignore: unused_field
  final $Res Function(LkuCodeType) _then;

  @override
  $Res call({
    Object? codeType = freezed,
    Object? description = freezed,
  }) {
    return _then(_value.copyWith(
      codeType: codeType == freezed
          ? _value.codeType
          : codeType // ignore: cast_nullable_to_non_nullable
              as String?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
abstract class _$$_LkuCodeTypeCopyWith<$Res>
    implements $LkuCodeTypeCopyWith<$Res> {
  factory _$$_LkuCodeTypeCopyWith(
          _$_LkuCodeType value, $Res Function(_$_LkuCodeType) then) =
      __$$_LkuCodeTypeCopyWithImpl<$Res>;
  @override
  $Res call({String? codeType, String? description});
}

/// @nodoc
class __$$_LkuCodeTypeCopyWithImpl<$Res> extends _$LkuCodeTypeCopyWithImpl<$Res>
    implements _$$_LkuCodeTypeCopyWith<$Res> {
  __$$_LkuCodeTypeCopyWithImpl(
      _$_LkuCodeType _value, $Res Function(_$_LkuCodeType) _then)
      : super(_value, (v) => _then(v as _$_LkuCodeType));

  @override
  _$_LkuCodeType get _value => super._value as _$_LkuCodeType;

  @override
  $Res call({
    Object? codeType = freezed,
    Object? description = freezed,
  }) {
    return _then(_$_LkuCodeType(
      codeType: codeType == freezed
          ? _value.codeType
          : codeType // ignore: cast_nullable_to_non_nullable
              as String?,
      description: description == freezed
          ? _value.description
          : description // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_LkuCodeType implements _LkuCodeType {
  _$_LkuCodeType({required this.codeType, required this.description});

  factory _$_LkuCodeType.fromJson(Map<String, dynamic> json) =>
      _$$_LkuCodeTypeFromJson(json);

  @override
  final String? codeType;
  @override
  final String? description;

  @override
  String toString() {
    return 'LkuCodeType(codeType: $codeType, description: $description)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_LkuCodeType &&
            const DeepCollectionEquality().equals(other.codeType, codeType) &&
            const DeepCollectionEquality()
                .equals(other.description, description));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(codeType),
      const DeepCollectionEquality().hash(description));

  @JsonKey(ignore: true)
  @override
  _$$_LkuCodeTypeCopyWith<_$_LkuCodeType> get copyWith =>
      __$$_LkuCodeTypeCopyWithImpl<_$_LkuCodeType>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_LkuCodeTypeToJson(
      this,
    );
  }
}

abstract class _LkuCodeType implements LkuCodeType {
  factory _LkuCodeType(
      {required final String? codeType,
      required final String? description}) = _$_LkuCodeType;

  factory _LkuCodeType.fromJson(Map<String, dynamic> json) =
      _$_LkuCodeType.fromJson;

  @override
  String? get codeType;
  @override
  String? get description;
  @override
  @JsonKey(ignore: true)
  _$$_LkuCodeTypeCopyWith<_$_LkuCodeType> get copyWith =>
      throw _privateConstructorUsedError;
}

Country _$CountryFromJson(Map<String, dynamic> json) {
  return _Country.fromJson(json);
}

/// @nodoc
mixin _$Country {
  String? get abbreviation => throw _privateConstructorUsedError;
  int? get countryId => throw _privateConstructorUsedError;
  String? get name => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $CountryCopyWith<Country> get copyWith => throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $CountryCopyWith<$Res> {
  factory $CountryCopyWith(Country value, $Res Function(Country) then) =
      _$CountryCopyWithImpl<$Res>;
  $Res call({String? abbreviation, int? countryId, String? name});
}

/// @nodoc
class _$CountryCopyWithImpl<$Res> implements $CountryCopyWith<$Res> {
  _$CountryCopyWithImpl(this._value, this._then);

  final Country _value;
  // ignore: unused_field
  final $Res Function(Country) _then;

  @override
  $Res call({
    Object? abbreviation = freezed,
    Object? countryId = freezed,
    Object? name = freezed,
  }) {
    return _then(_value.copyWith(
      abbreviation: abbreviation == freezed
          ? _value.abbreviation
          : abbreviation // ignore: cast_nullable_to_non_nullable
              as String?,
      countryId: countryId == freezed
          ? _value.countryId
          : countryId // ignore: cast_nullable_to_non_nullable
              as int?,
      name: name == freezed
          ? _value.name
          : name // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
abstract class _$$_CountryCopyWith<$Res> implements $CountryCopyWith<$Res> {
  factory _$$_CountryCopyWith(
          _$_Country value, $Res Function(_$_Country) then) =
      __$$_CountryCopyWithImpl<$Res>;
  @override
  $Res call({String? abbreviation, int? countryId, String? name});
}

/// @nodoc
class __$$_CountryCopyWithImpl<$Res> extends _$CountryCopyWithImpl<$Res>
    implements _$$_CountryCopyWith<$Res> {
  __$$_CountryCopyWithImpl(_$_Country _value, $Res Function(_$_Country) _then)
      : super(_value, (v) => _then(v as _$_Country));

  @override
  _$_Country get _value => super._value as _$_Country;

  @override
  $Res call({
    Object? abbreviation = freezed,
    Object? countryId = freezed,
    Object? name = freezed,
  }) {
    return _then(_$_Country(
      abbreviation: abbreviation == freezed
          ? _value.abbreviation
          : abbreviation // ignore: cast_nullable_to_non_nullable
              as String?,
      countryId: countryId == freezed
          ? _value.countryId
          : countryId // ignore: cast_nullable_to_non_nullable
              as int?,
      name: name == freezed
          ? _value.name
          : name // ignore: cast_nullable_to_non_nullable
              as String?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_Country implements _Country {
  _$_Country(
      {required this.abbreviation,
      required this.countryId,
      required this.name});

  factory _$_Country.fromJson(Map<String, dynamic> json) =>
      _$$_CountryFromJson(json);

  @override
  final String? abbreviation;
  @override
  final int? countryId;
  @override
  final String? name;

  @override
  String toString() {
    return 'Country(abbreviation: $abbreviation, countryId: $countryId, name: $name)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_Country &&
            const DeepCollectionEquality()
                .equals(other.abbreviation, abbreviation) &&
            const DeepCollectionEquality().equals(other.countryId, countryId) &&
            const DeepCollectionEquality().equals(other.name, name));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(abbreviation),
      const DeepCollectionEquality().hash(countryId),
      const DeepCollectionEquality().hash(name));

  @JsonKey(ignore: true)
  @override
  _$$_CountryCopyWith<_$_Country> get copyWith =>
      __$$_CountryCopyWithImpl<_$_Country>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_CountryToJson(
      this,
    );
  }
}

abstract class _Country implements Country {
  factory _Country(
      {required final String? abbreviation,
      required final int? countryId,
      required final String? name}) = _$_Country;

  factory _Country.fromJson(Map<String, dynamic> json) = _$_Country.fromJson;

  @override
  String? get abbreviation;
  @override
  int? get countryId;
  @override
  String? get name;
  @override
  @JsonKey(ignore: true)
  _$$_CountryCopyWith<_$_Country> get copyWith =>
      throw _privateConstructorUsedError;
}

States _$StatesFromJson(Map<String, dynamic> json) {
  return _States.fromJson(json);
}

/// @nodoc
mixin _$States {
  String? get abbreviation => throw _privateConstructorUsedError;
  Country? get country => throw _privateConstructorUsedError;
  int? get countryId => throw _privateConstructorUsedError;
  String? get name => throw _privateConstructorUsedError;
  int? get stateTerritoryId => throw _privateConstructorUsedError;

  Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
  @JsonKey(ignore: true)
  $StatesCopyWith<States> get copyWith => throw _privateConstructorUsedError;
}

/// @nodoc
abstract class $StatesCopyWith<$Res> {
  factory $StatesCopyWith(States value, $Res Function(States) then) =
      _$StatesCopyWithImpl<$Res>;
  $Res call(
      {String? abbreviation,
      Country? country,
      int? countryId,
      String? name,
      int? stateTerritoryId});

  $CountryCopyWith<$Res>? get country;
}

/// @nodoc
class _$StatesCopyWithImpl<$Res> implements $StatesCopyWith<$Res> {
  _$StatesCopyWithImpl(this._value, this._then);

  final States _value;
  // ignore: unused_field
  final $Res Function(States) _then;

  @override
  $Res call({
    Object? abbreviation = freezed,
    Object? country = freezed,
    Object? countryId = freezed,
    Object? name = freezed,
    Object? stateTerritoryId = freezed,
  }) {
    return _then(_value.copyWith(
      abbreviation: abbreviation == freezed
          ? _value.abbreviation
          : abbreviation // ignore: cast_nullable_to_non_nullable
              as String?,
      country: country == freezed
          ? _value.country
          : country // ignore: cast_nullable_to_non_nullable
              as Country?,
      countryId: countryId == freezed
          ? _value.countryId
          : countryId // ignore: cast_nullable_to_non_nullable
              as int?,
      name: name == freezed
          ? _value.name
          : name // ignore: cast_nullable_to_non_nullable
              as String?,
      stateTerritoryId: stateTerritoryId == freezed
          ? _value.stateTerritoryId
          : stateTerritoryId // ignore: cast_nullable_to_non_nullable
              as int?,
    ));
  }

  @override
  $CountryCopyWith<$Res>? get country {
    if (_value.country == null) {
      return null;
    }

    return $CountryCopyWith<$Res>(_value.country!, (value) {
      return _then(_value.copyWith(country: value));
    });
  }
}

/// @nodoc
abstract class _$$_StatesCopyWith<$Res> implements $StatesCopyWith<$Res> {
  factory _$$_StatesCopyWith(_$_States value, $Res Function(_$_States) then) =
      __$$_StatesCopyWithImpl<$Res>;
  @override
  $Res call(
      {String? abbreviation,
      Country? country,
      int? countryId,
      String? name,
      int? stateTerritoryId});

  @override
  $CountryCopyWith<$Res>? get country;
}

/// @nodoc
class __$$_StatesCopyWithImpl<$Res> extends _$StatesCopyWithImpl<$Res>
    implements _$$_StatesCopyWith<$Res> {
  __$$_StatesCopyWithImpl(_$_States _value, $Res Function(_$_States) _then)
      : super(_value, (v) => _then(v as _$_States));

  @override
  _$_States get _value => super._value as _$_States;

  @override
  $Res call({
    Object? abbreviation = freezed,
    Object? country = freezed,
    Object? countryId = freezed,
    Object? name = freezed,
    Object? stateTerritoryId = freezed,
  }) {
    return _then(_$_States(
      abbreviation: abbreviation == freezed
          ? _value.abbreviation
          : abbreviation // ignore: cast_nullable_to_non_nullable
              as String?,
      country: country == freezed
          ? _value.country
          : country // ignore: cast_nullable_to_non_nullable
              as Country?,
      countryId: countryId == freezed
          ? _value.countryId
          : countryId // ignore: cast_nullable_to_non_nullable
              as int?,
      name: name == freezed
          ? _value.name
          : name // ignore: cast_nullable_to_non_nullable
              as String?,
      stateTerritoryId: stateTerritoryId == freezed
          ? _value.stateTerritoryId
          : stateTerritoryId // ignore: cast_nullable_to_non_nullable
              as int?,
    ));
  }
}

/// @nodoc
@JsonSerializable()
class _$_States implements _States {
  _$_States(
      {required this.abbreviation,
      required this.country,
      required this.countryId,
      required this.name,
      required this.stateTerritoryId});

  factory _$_States.fromJson(Map<String, dynamic> json) =>
      _$$_StatesFromJson(json);

  @override
  final String? abbreviation;
  @override
  final Country? country;
  @override
  final int? countryId;
  @override
  final String? name;
  @override
  final int? stateTerritoryId;

  @override
  String toString() {
    return 'States(abbreviation: $abbreviation, country: $country, countryId: $countryId, name: $name, stateTerritoryId: $stateTerritoryId)';
  }

  @override
  bool operator ==(dynamic other) {
    return identical(this, other) ||
        (other.runtimeType == runtimeType &&
            other is _$_States &&
            const DeepCollectionEquality()
                .equals(other.abbreviation, abbreviation) &&
            const DeepCollectionEquality().equals(other.country, country) &&
            const DeepCollectionEquality().equals(other.countryId, countryId) &&
            const DeepCollectionEquality().equals(other.name, name) &&
            const DeepCollectionEquality()
                .equals(other.stateTerritoryId, stateTerritoryId));
  }

  @JsonKey(ignore: true)
  @override
  int get hashCode => Object.hash(
      runtimeType,
      const DeepCollectionEquality().hash(abbreviation),
      const DeepCollectionEquality().hash(country),
      const DeepCollectionEquality().hash(countryId),
      const DeepCollectionEquality().hash(name),
      const DeepCollectionEquality().hash(stateTerritoryId));

  @JsonKey(ignore: true)
  @override
  _$$_StatesCopyWith<_$_States> get copyWith =>
      __$$_StatesCopyWithImpl<_$_States>(this, _$identity);

  @override
  Map<String, dynamic> toJson() {
    return _$$_StatesToJson(
      this,
    );
  }
}

abstract class _States implements States {
  factory _States(
      {required final String? abbreviation,
      required final Country? country,
      required final int? countryId,
      required final String? name,
      required final int? stateTerritoryId}) = _$_States;

  factory _States.fromJson(Map<String, dynamic> json) = _$_States.fromJson;

  @override
  String? get abbreviation;
  @override
  Country? get country;
  @override
  int? get countryId;
  @override
  String? get name;
  @override
  int? get stateTerritoryId;
  @override
  @JsonKey(ignore: true)
  _$$_StatesCopyWith<_$_States> get copyWith =>
      throw _privateConstructorUsedError;
}